From 835557cd2755d5a9a560332876d9344aedfa4be2 Mon Sep 17 00:00:00 2001 From: wolf Date: Wed, 6 Apr 2005 18:15:10 +0000 Subject: [PATCH] I managed to get the determinant wrong... git-svn-id: https://svn.dealii.org/trunk@10395 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/base/full_tensor_09.cc | 55 +++++++++++++++++++ tests/base/symmetric_tensor_09.cc | 52 ++++++++++++++++++ .../base/full_tensor_09.output | 17 ++++++ .../base/symmetric_tensor_09.output | 17 ++++++ 4 files changed, 141 insertions(+) create mode 100644 tests/base/full_tensor_09.cc create mode 100644 tests/base/symmetric_tensor_09.cc create mode 100644 tests/results/i686-pc-linux-gnu+gcc3.2/base/full_tensor_09.output create mode 100644 tests/results/i686-pc-linux-gnu+gcc3.2/base/symmetric_tensor_09.output diff --git a/tests/base/full_tensor_09.cc b/tests/base/full_tensor_09.cc new file mode 100644 index 0000000000..cc2bb20766 --- /dev/null +++ b/tests/base/full_tensor_09.cc @@ -0,0 +1,55 @@ +//---------------------------- full_tensor_09.cc --------------------------- +// $Id$ +// Version: $Name$ +// +// Copyright (C) 2005 by the deal.II authors +// +// This file is subject to QPL and may not be distributed +// without copyright and license information. Please refer +// to the file deal.II/doc/license.html for the text and +// further information on this license. +// +//---------------------------- full_tensor_09.cc --------------------------- + +// test the determinant code + +#include "../tests.h" +#include +#include +#include +#include + + +template +void test () +{ + Tensor<2,dim> t; + + // choose the same symmetric tensor + // as in symmetric_tensor_09 + for (unsigned int i=0; i (); + test<3> (); + + deallog << "OK" << std::endl; +} diff --git a/tests/base/symmetric_tensor_09.cc b/tests/base/symmetric_tensor_09.cc new file mode 100644 index 0000000000..bb362635c8 --- /dev/null +++ b/tests/base/symmetric_tensor_09.cc @@ -0,0 +1,52 @@ +//---------------------------- symmetric_tensor_09.cc --------------------------- +// $Id$ +// Version: $Name$ +// +// Copyright (C) 2005 by the deal.II authors +// +// This file is subject to QPL and may not be distributed +// without copyright and license information. Please refer +// to the file deal.II/doc/license.html for the text and +// further information on this license. +// +//---------------------------- symmetric_tensor_09.cc --------------------------- + +// test the determinant code + +#include "../tests.h" +#include +#include +#include +#include + + +template +void test () +{ + SymmetricTensor<2,dim> t; + for (unsigned int i=0; i (); + test<3> (); + + deallog << "OK" << std::endl; +} diff --git a/tests/results/i686-pc-linux-gnu+gcc3.2/base/full_tensor_09.output b/tests/results/i686-pc-linux-gnu+gcc3.2/base/full_tensor_09.output new file mode 100644 index 0000000000..31cd90f60c --- /dev/null +++ b/tests/results/i686-pc-linux-gnu+gcc3.2/base/full_tensor_09.output @@ -0,0 +1,17 @@ + +DEAL::0 0 1.00 +DEAL::0 1 3.00 +DEAL::1 0 3.00 +DEAL::1 1 5.00 +DEAL::-4.00 +DEAL::0 0 1.00 +DEAL::0 1 3.00 +DEAL::0 2 5.00 +DEAL::1 0 3.00 +DEAL::1 1 5.00 +DEAL::1 2 9.00 +DEAL::2 0 5.00 +DEAL::2 1 9.00 +DEAL::2 2 13.0 +DEAL::12.0 +DEAL::OK diff --git a/tests/results/i686-pc-linux-gnu+gcc3.2/base/symmetric_tensor_09.output b/tests/results/i686-pc-linux-gnu+gcc3.2/base/symmetric_tensor_09.output new file mode 100644 index 0000000000..31cd90f60c --- /dev/null +++ b/tests/results/i686-pc-linux-gnu+gcc3.2/base/symmetric_tensor_09.output @@ -0,0 +1,17 @@ + +DEAL::0 0 1.00 +DEAL::0 1 3.00 +DEAL::1 0 3.00 +DEAL::1 1 5.00 +DEAL::-4.00 +DEAL::0 0 1.00 +DEAL::0 1 3.00 +DEAL::0 2 5.00 +DEAL::1 0 3.00 +DEAL::1 1 5.00 +DEAL::1 2 9.00 +DEAL::2 0 5.00 +DEAL::2 1 9.00 +DEAL::2 2 13.0 +DEAL::12.0 +DEAL::OK -- 2.39.5