]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
No need any more to provide operator== in the test file since it is now available...
authorbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 7 Dec 2010 03:38:23 +0000 (03:38 +0000)
committerbangerth <bangerth@0785d39b-7218-0410-832d-ea1e28bc413d>
Tue, 7 Dec 2010 03:38:23 +0000 (03:38 +0000)
git-svn-id: https://svn.dealii.org/trunk@22931 0785d39b-7218-0410-832d-ea1e28bc413d

tests/deal.II/sparsity_pattern.cc
tests/deal.II/sparsity_pattern_01.cc
tests/deal.II/sparsity_pattern_01_x.cc
tests/deal.II/sparsity_pattern_05.cc
tests/deal.II/sparsity_pattern_05_x.cc
tests/deal.II/sparsity_pattern_x.cc

index 8e551ce0437d3258e1453ff3be55d1776c27138f..f76ff6e2406bc5abd53a19bbe2a7fcbd96a6e96f 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 2000, 2001, 2003, 2004 by the deal.II authors
+//    Copyright (C) 2000, 2001, 2003, 2004, 2010 by the deal.II authors
 //
 //    This file is subject to QPL and may not be  distributed
 //    without copyright and license information. Please refer
 
 
 
-bool operator == (const SparsityPattern &sp1,
-                 const SparsityPattern &sp2)
-{
-  if (sp1.n_nonzero_elements() != sp2.n_nonzero_elements())
-    return false;
-  
-  for (unsigned int i=0; i<sp1.n_nonzero_elements(); ++i)
-    if (sp1.get_column_numbers()[i] !=
-       sp2.get_column_numbers()[i])
-      return false;
-
-  for (unsigned int i=0; i<sp1.n_rows(); ++i)
-    if (sp1.get_rowstart_indices()[i] !=
-       sp2.get_rowstart_indices()[i])
-      return false;
-  
-  return true;
-}
-
-
-
 bool operator == (const BlockSparsityPattern &sp1,
                  const BlockSparsityPattern &sp2)
 {
index a52d09d44f91c925aba7ab941c2ecc6ecb004587..3cc2c0d2bcaa6679adb9f91c6a7aa234ea0ac109 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 2000, 2001, 2003, 2004, 2007 by the deal.II authors
+//    Copyright (C) 2000, 2001, 2003, 2004, 2007, 2010 by the deal.II authors
 //
 //    This file is subject to QPL and may not be  distributed
 //    without copyright and license information. Please refer
 #include <fstream>
 
 
-
-bool operator == (const SparsityPattern &sp1,
-                 const SparsityPattern &sp2)
-{
-  if (sp1.n_nonzero_elements() != sp2.n_nonzero_elements())
-    return false;
-  
-  for (unsigned int i=0; i<sp1.n_nonzero_elements(); ++i)
-    if (sp1.get_column_numbers()[i] !=
-       sp2.get_column_numbers()[i])
-      return false;
-
-  for (unsigned int i=0; i<sp1.n_rows(); ++i)
-    if (sp1.get_rowstart_indices()[i] !=
-       sp2.get_rowstart_indices()[i])
-      return false;
-  
-  return true;
-}
-
-
-
 bool operator == (const BlockSparsityPattern &sp1,
                  const BlockSparsityPattern &sp2)
 {
index af081997ed29fa4bcb084672535b86dc8e1a2dc5..ec1851997ac18a4ed6e447e9235b421fb24214d9 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 2000, 2001, 2003, 2004, 2007 by the deal.II authors
+//    Copyright (C) 2000, 2001, 2003, 2004, 2007, 2010 by the deal.II authors
 //
 //    This file is subject to QPL and may not be  distributed
 //    without copyright and license information. Please refer
 
 
 
-bool operator == (const SparsityPattern &sp1,
-                 const SparsityPattern &sp2)
-{
-  if (sp1.n_nonzero_elements() != sp2.n_nonzero_elements())
-    return false;
-  
-  for (unsigned int i=0; i<sp1.n_nonzero_elements(); ++i)
-    if (sp1.get_column_numbers()[i] !=
-       sp2.get_column_numbers()[i])
-      return false;
-
-  for (unsigned int i=0; i<sp1.n_rows(); ++i)
-    if (sp1.get_rowstart_indices()[i] !=
-       sp2.get_rowstart_indices()[i])
-      return false;
-  
-  return true;
-}
-
-
-
 bool operator == (const BlockSparsityPattern &sp1,
                  const BlockSparsityPattern &sp2)
 {
index 1167dd3d4256c42a992680c2c069b5c1b1e8c893..7391f846f37501153439e07ec03945c2ada3acd9 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 2000, 2001, 2003, 2004, 2007 by the deal.II authors
+//    Copyright (C) 2000, 2001, 2003, 2004, 2007, 2010 by the deal.II authors
 //
 //    This file is subject to QPL and may not be  distributed
 //    without copyright and license information. Please refer
 
 
 
-bool operator == (const SparsityPattern &sp1,
-                 const SparsityPattern &sp2)
-{
-  if (sp1.n_nonzero_elements() != sp2.n_nonzero_elements())
-    return false;
-  
-  for (unsigned int i=0; i<sp1.n_nonzero_elements(); ++i)
-    if (sp1.get_column_numbers()[i] !=
-       sp2.get_column_numbers()[i])
-      {
-       Assert (false, ExcInternalError());
-       return false;
-      }
-
-  for (unsigned int i=0; i<sp1.n_rows(); ++i)
-    if (sp1.get_rowstart_indices()[i] !=
-       sp2.get_rowstart_indices()[i])
-      {
-       Assert (false, ExcInternalError());
-       return false;
-      }
-  
-  return true;
-}
-
-
-
 bool operator == (const BlockSparsityPattern &sp1,
                  const BlockSparsityPattern &sp2)
 {
index cef84e4a8662d9a1d4f08a62ac08194c1ed208aa..a30147d89363f42621d1c773b3e076e8bde482e5 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 2000, 2001, 2003, 2004, 2007 by the deal.II authors
+//    Copyright (C) 2000, 2001, 2003, 2004, 2007, 2010 by the deal.II authors
 //
 //    This file is subject to QPL and may not be  distributed
 //    without copyright and license information. Please refer
 
 
 
-bool operator == (const SparsityPattern &sp1,
-                 const SparsityPattern &sp2)
-{
-  if (sp1.n_nonzero_elements() != sp2.n_nonzero_elements())
-    return false;
-  
-  for (unsigned int i=0; i<sp1.n_nonzero_elements(); ++i)
-    if (sp1.get_column_numbers()[i] !=
-       sp2.get_column_numbers()[i])
-      {
-       Assert (false, ExcInternalError());
-       return false;
-      }
-
-  for (unsigned int i=0; i<sp1.n_rows(); ++i)
-    if (sp1.get_rowstart_indices()[i] !=
-       sp2.get_rowstart_indices()[i])
-      {
-       Assert (false, ExcInternalError());
-       return false;
-      }
-  
-  return true;
-}
-
-
-
 bool operator == (const BlockSparsityPattern &sp1,
                  const BlockSparsityPattern &sp2)
 {
index afe07a04ad44b74854508128484bbb77085dc6c7..409e86517ee6d353445ce8ba27925a3cd8c47bf3 100644 (file)
@@ -2,7 +2,7 @@
 //    $Id$
 //    Version: $Name$ 
 //
-//    Copyright (C) 2000, 2001, 2003, 2004, 2007 by the deal.II authors
+//    Copyright (C) 2000, 2001, 2003, 2004, 2007, 2010 by the deal.II authors
 //
 //    This file is subject to QPL and may not be  distributed
 //    without copyright and license information. Please refer
 
 
 
-bool operator == (const SparsityPattern &sp1,
-                 const SparsityPattern &sp2)
-{
-  if (sp1.n_nonzero_elements() != sp2.n_nonzero_elements())
-    return false;
-  
-  for (unsigned int i=0; i<sp1.n_nonzero_elements(); ++i)
-    if (sp1.get_column_numbers()[i] !=
-       sp2.get_column_numbers()[i])
-      return false;
-
-  for (unsigned int i=0; i<sp1.n_rows(); ++i)
-    if (sp1.get_rowstart_indices()[i] !=
-       sp2.get_rowstart_indices()[i])
-      return false;
-  
-  return true;
-}
-
-
-
 bool operator == (const BlockSparsityPattern &sp1,
                  const BlockSparsityPattern &sp2)
 {

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.