// $Id$
// Version: $Name$
//
-// Copyright (C) 2004, 2005 by the deal.II authors
+// Copyright (C) 2004, 2005, 2007 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
// check that they are ok, and this time
// all of them
for (unsigned int i=0; i<v.size(); ++i)
- Assert (((pattern[i] == true) && (v(i) == i)
+ Assert ((((pattern[i] == true) && (v(i) == i))
||
- (pattern[i] == false) && (v(i) == 0)),
+ ((pattern[i] == false) && (v(i) == 0))),
ExcInternalError());
deallog << "OK" << std::endl;
// $Id$
// Version: $Name$
//
-// Copyright (C) 2004, 2005 by the deal.II authors
+// Copyright (C) 2004, 2005, 2007 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
// check that they are ok, and this time
// all of them
for (unsigned int i=0; i<v.size(); ++i)
- Assert (((pattern[i] == true) && (v(i) == i)
+ Assert ((((pattern[i] == true) && (v(i) == i))
||
- (pattern[i] == false) && (v(i) == 0)),
+ ((pattern[i] == false) && (v(i) == 0))),
ExcInternalError());
deallog << "OK" << std::endl;
// $Id$
// Version: $Name$
//
-// Copyright (C) 2004, 2005 by the deal.II authors
+// Copyright (C) 2004, 2005, 2007 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
// check that they are ok, and this time
// all of them
for (unsigned int i=0; i<v.size(); ++i)
- Assert (((pattern[i] == true) && (v(i) == i)
- ||
- (pattern[i] == false) && (v(i) == 0)),
+ Assert (((pattern[i] == true) && (v(i) == i))
+ ||
+ ((pattern[i] == false) && (v(i) == 0)),
ExcInternalError());
deallog << "OK" << std::endl;
// $Id$
// Version: $Name$
//
-// Copyright (C) 2004, 2005 by the deal.II authors
+// Copyright (C) 2004, 2005, 2007 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
// check that they are ok, and this time
// all of them
for (unsigned int i=0; i<v.size(); ++i)
- Assert (((pattern[i] == true) && (v(i) == 2*i)
- ||
- (pattern[i] == false) && (v(i) == 0)),
- ExcInternalError());
+ Assert (((pattern[i] == true) && (v(i) == 2*i))
+ ||
+ ((pattern[i] == false) && (v(i) == 0)),
+ ExcInternalError());
deallog << "OK" << std::endl;
}
// $Id$
// Version: $Name$
//
-// Copyright (C) 2004, 2005 by the deal.II authors
+// Copyright (C) 2004, 2005, 2007 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
// check that they are ok, and this time
// all of them
for (unsigned int i=0; i<v.size(); ++i)
- Assert (((pattern[i] == true) && (v(i) == i)
- ||
- (pattern[i] == false) && (v(i) == 0)),
- ExcInternalError());
+ Assert (((pattern[i] == true) && (v(i) == i))
+ ||
+ ((pattern[i] == false) && (v(i) == 0)),
+ ExcInternalError());
deallog << "OK" << std::endl;
}
// $Id$
// Version: $Name$
//
-// Copyright (C) 2004, 2005 by the deal.II authors
+// Copyright (C) 2004, 2005, 2007 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
// check that the entries are ok
for (unsigned int i=0; i<v.size(); ++i)
- Assert (((pattern[i] == true) && (v(i) == i*5./4.)
- ||
- (pattern[i] == false) && (v(i) == 0)),
- ExcInternalError());
+ Assert (((pattern[i] == true) && (v(i) == i*5./4.))
+ ||
+ ((pattern[i] == false) && (v(i) == 0)),
+ ExcInternalError());
deallog << "OK" << std::endl;
}
// $Id$
// Version: $Name$
//
-// Copyright (C) 2004, 2005 by the deal.II authors
+// Copyright (C) 2004, 2005, 2007 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
// check that the entries are ok
for (unsigned int i=0; i<v.size(); ++i)
- Assert (((pattern[i] == true) && (v(i) == i*3./4.)
- ||
- (pattern[i] == false) && (v(i) == 0)),
- ExcInternalError());
+ Assert (((pattern[i] == true) && (v(i) == i*3./4.))
+ ||
+ ((pattern[i] == false) && (v(i) == 0)),
+ ExcInternalError());
deallog << "OK" << std::endl;
}