]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Add a test. 7871/head
authorWolfgang Bangerth <bangerth@colostate.edu>
Thu, 28 Mar 2019 15:07:21 +0000 (09:07 -0600)
committerWolfgang Bangerth <bangerth@colostate.edu>
Thu, 28 Mar 2019 15:22:09 +0000 (09:22 -0600)
tests/vector/vector_59.cc [new file with mode: 0644]
tests/vector/vector_59.output [new file with mode: 0644]

diff --git a/tests/vector/vector_59.cc b/tests/vector/vector_59.cc
new file mode 100644 (file)
index 0000000..0f6042e
--- /dev/null
@@ -0,0 +1,41 @@
+// ---------------------------------------------------------------------
+//
+// 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.
+//
+// ---------------------------------------------------------------------
+
+
+
+// check Vector initialization with std::initializer_list objects
+
+#include <deal.II/lac/vector.h>
+
+#include "../tests.h"
+
+
+
+int
+main()
+{
+  initlog();
+
+  Vector<double> vd({1.0, 2.0, 3.0});
+  for (const auto &x : vd)
+    deallog << x << ' ';
+  deallog << std::endl;
+
+
+  Vector<double> vi({1, 2, 3});
+  for (const auto &x : vi)
+    deallog << x << ' ';
+  deallog << std::endl;
+}
diff --git a/tests/vector/vector_59.output b/tests/vector/vector_59.output
new file mode 100644 (file)
index 0000000..e6f0985
--- /dev/null
@@ -0,0 +1,3 @@
+
+DEAL::1.00000 2.00000 3.00000 
+DEAL::1.00000 2.00000 3.00000 

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.