# Makefile,v 1.14 2002/09/19 13:53:47 wolf Exp
# Common Makefile for all test directories
-all: base lac fe deal.II multigrid bits hp fail
+
+all: nofail fail
+nofail: base lac fe deal.II multigrid bits hp
@-if grep -q 'define HAVE_LIBUMFPACK' $D/base/include/base/config.h ; then \
cd umfpack ; $(MAKE) ; cd .. ; \
fi
// $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
// now comes the check: we subtract B from
// A, and make sure that the result is zero
- A.add_scaled (-1., B);
+ A.add (-1., B);
deallog << "|A|=" << A.frobenius_norm() << std::endl;
deallog << "|B|=" << B.frobenius_norm() << std::endl;
Assert (A.frobenius_norm() < 1e-12*B.frobenius_norm(),
// $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
// now comes the check: we subtract B from
// A, and make sure that the result is zero
- A.add_scaled (-1., B);
+ A.add (-1., B);
deallog << "|A|=" << A.frobenius_norm() << std::endl;
deallog << "|B|=" << B.frobenius_norm() << std::endl;
Assert (A.frobenius_norm() < 1e-12*B.frobenius_norm(),
// $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
// now comes the check: we subtract B from
// A, and make sure that the result is zero
- A.add_scaled (-1., B);
+ A.add (-1., B);
deallog << "|A|=" << A.frobenius_norm() << std::endl;
deallog << "|B|=" << B.frobenius_norm() << std::endl;
Assert (A.frobenius_norm() < 1e-12*B.frobenius_norm(),
check_iterator(E);
#endif
E.print_statistics(deallog, true);
- E.add_scaled(-1., A);
+ E.add(-1., A);
if (E.l2_norm() < 1.e-14)
deallog << "Matrices are equal" << std::endl;
else