block_vector block_vector_* block_matrices \
matrix_lib matrix_out pointer_matrix \
solver eigen \
- sparse_ilu sparse_ilu_t lapack lapack_fill block_minres \
+ sparse_ilu sparse_ilu_t lapack_fill block_minres \
identity_matrix* trace
############################################################
-tests_x = tridiagonal_ev1
+tests_x = tridiagonal_ev1 full_matrix
# from above list of regular expressions, generate the real set of
// $Id$
// Version: $Name$
//
-// Copyright (C) 2005 by the deal.II authors
+// Copyright (C) 2005, 2006 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
int main()
{
- std::ofstream logfile("lapack/output");
+ std::ofstream logfile("full_matrix/output");
logfile.precision(3);
deallog.attach(logfile);
deallog.depth_console(0);
deallog.threshold_double(1.e-10);
-#ifdef HAVE_LIBLAPACK
FullMatrix<double> A(3,4,rect);
LAPACKFullMatrix<double> LA(3,4);
LA = A;
}
v1.reinit(4);
- v2.reinit(4);
-
-#else
- // If lapack is not available, this
- // test will not complain.
- deallog.push("Rect");
- deallog << "operator= (const FullMatrix<number>&) ok" << std::endl;
- deallog << "vmult ok" << std::endl;
- deallog << "vmult_add ok" << std::endl;
- deallog << "Tvmult ok" << std::endl;
- deallog << "Tvmult_add ok" << std::endl;
- deallog.pop();
-
- deallog << "Eigenvalues 5\t0" << std::endl;
- deallog << "Eigenvalues 1\t0" << std::endl;
- deallog << "Eigenvalues 5\t0" << std::endl;
- deallog << "Eigenvalues 5\t0" << std::endl;
- deallog.pop();
-#endif
+ v2.reinit(4);
}