]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Remove another test that is now no longer useful after r24219.
authorbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 31 Aug 2011 03:09:10 +0000 (03:09 +0000)
committerbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Wed, 31 Aug 2011 03:09:10 +0000 (03:09 +0000)
git-svn-id: https://svn.dealii.org/trunk@24225 0785d39b-7218-0410-832d-ea1e28bc413d

tests/petsc/full_matrix_03.cc [deleted file]
tests/petsc/full_matrix_03/cmp/generic [deleted file]

diff --git a/tests/petsc/full_matrix_03.cc b/tests/petsc/full_matrix_03.cc
deleted file mode 100644 (file)
index d1dcb81..0000000
+++ /dev/null
@@ -1,99 +0,0 @@
-//----------------------------  petsc_full_matrix_03.cc  ---------------------------
-//    $Id$
-//    Version: $Name$ 
-//
-//    Copyright (C) 2004, 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.
-//
-//----------------------------  petsc_full_matrix_03.cc  ---------------------------
-
-
-// check setting elements in a petsc matrix using set() and add()
-// intermixed. this poses PETSc some problems, since one has to flush some
-// buffer in between these two types of operations
-
-#include "../tests.h"
-#include <deal.II/lac/petsc_full_matrix.h>    
-#include <fstream>
-#include <iostream>
-
-
-void test (PETScWrappers::FullMatrix &m)
-{
-                                   // first set a few entries
-  for (unsigned int i=0; i<m.m(); ++i)
-    for (unsigned int j=0; j<m.m(); ++j)
-      if ((i+2*j+1) % 3 == 0)
-        {
-          if (i*j % 2 == 0)
-            m.set (i,j, i*j*.5+.5);
-          else
-            m.add (i,j, i*j*.5+.5);
-        }
-  
-  m.compress ();
-  
-                                   // then make sure we retrieve the same ones
-  for (unsigned int i=0; i<m.m(); ++i)
-    for (unsigned int j=0; j<m.m(); ++j)
-      if ((i+2*j+1) % 3 == 0)
-        {
-          Assert (m(i,j) == i*j*.5+.5, ExcInternalError());
-          Assert (m.el(i,j) == i*j*.5+.5, ExcInternalError());
-        }
-      else
-        {
-          Assert (m(i,j) == 0, ExcInternalError());
-          Assert (m.el(i,j) == 0, ExcInternalError());
-        }
-
-  deallog << "OK" << std::endl;
-}
-
-
-
-int main (int argc,char **argv) 
-{
-  std::ofstream logfile("full_matrix_03/output");
-  deallog.attach(logfile);
-  deallog.depth_console(0);
-  deallog.threshold_double(1.e-10);
-
-  try
-    {
-      PetscInitialize(&argc,&argv,0,0);
-      {
-        PETScWrappers::FullMatrix m (5,5);
-        test (m);
-      }
-      PetscFinalize();
-    }
-  catch (std::exception &exc)
-    {
-      std::cerr << std::endl << std::endl
-               << "----------------------------------------------------"
-               << std::endl;
-      std::cerr << "Exception on processing: " << std::endl
-               << exc.what() << std::endl
-               << "Aborting!" << std::endl
-               << "----------------------------------------------------"
-               << std::endl;
-      
-      return 1;
-    }
-  catch (...) 
-    {
-      std::cerr << std::endl << std::endl
-               << "----------------------------------------------------"
-               << std::endl;
-      std::cerr << "Unknown exception!" << std::endl
-               << "Aborting!" << std::endl
-               << "----------------------------------------------------"
-               << std::endl;
-      return 1;
-    };
-}
diff --git a/tests/petsc/full_matrix_03/cmp/generic b/tests/petsc/full_matrix_03/cmp/generic
deleted file mode 100644 (file)
index 0fd8fc1..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-
-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.