]> https://gitweb.dealii.org/ - dealii.git/commitdiff
add a test 7768/head
authorMatthias Maier <tamiko@43-1.org>
Thu, 28 Feb 2019 20:34:24 +0000 (14:34 -0600)
committerMatthias Maier <tamiko@43-1.org>
Thu, 28 Feb 2019 20:34:24 +0000 (14:34 -0600)
tests/sparsity/sparsity_pattern_iterator_09.cc [new file with mode: 0644]
tests/sparsity/sparsity_pattern_iterator_09.output [new file with mode: 0644]

diff --git a/tests/sparsity/sparsity_pattern_iterator_09.cc b/tests/sparsity/sparsity_pattern_iterator_09.cc
new file mode 100644 (file)
index 0000000..17493bd
--- /dev/null
@@ -0,0 +1,51 @@
+// ---------------------------------------------------------------------
+//
+// Copyright (C) 2004 - 2017 by the deal.II authors
+//
+// This file is part of the deal.II library.
+//
+// The deal.II library is free software; you can use it, redistribute
+// it, and/or modify it under the terms of the GNU Lesser General
+// Public License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+// The full text of the license can be found in the file LICENSE.md at
+// the top level directory of deal.II.
+//
+// ---------------------------------------------------------------------
+
+
+
+// test that i++ and i+n operations work with SparsityPattern::iterator.
+
+#include <deal.II/lac/sparsity_pattern.h>
+
+#include "../tests.h"
+
+void
+test()
+{
+  SparsityPattern sp(5, 5, 3);
+  for (unsigned int i = 0; i < 5; ++i)
+    for (unsigned int j = 0; j < 5; ++j)
+      if ((i + 2 * j + 1) % 3 == 0)
+        sp.add(i, j);
+  sp.compress();
+
+  SparsityPattern::const_iterator i = sp.begin();
+
+  ++i;
+  i++;
+  i + 2;
+
+  deallog << "OK" << std::endl;
+}
+
+
+
+int
+main()
+{
+  initlog();
+
+  test();
+}
diff --git a/tests/sparsity/sparsity_pattern_iterator_09.output b/tests/sparsity/sparsity_pattern_iterator_09.output
new file mode 100644 (file)
index 0000000..0fd8fc1
--- /dev/null
@@ -0,0 +1,2 @@
+
+DEAL::OK

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.