// $Id$
// Version: $Name$
//
-// Copyright (C) 2007, 2008 by the deal.II authors
+// Copyright (C) 2007, 2008, 2009 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
skip_space (whole_file);
if (whole_file.find ("for") != 0)
{
- std::cerr << "Invalid instantiation list" << std::endl;
+ std::cerr << "Invalid instantiation list: missing 'for'" << std::endl;
std::exit (1);
}
whole_file.erase (0, 3);
skip_space (whole_file);
if (whole_file.find ("(") != 0)
{
- std::cerr << "Invalid instantiation list" << std::endl;
+ std::cerr << "Invalid instantiation list: missing '('" << std::endl;
std::exit (1);
}
whole_file.erase (0, 1);
';');
if (whole_file.find (")") != 0)
{
- std::cerr << "Invalid instantiation list" << std::endl;
+ std::cerr << "Invalid instantiation list: missing ')'" << std::endl;
std::exit (1);
}
whole_file.erase (0, 1);
std::complex<float>;
std::complex<long double> }
+DERIVATIVE_TENSORS := { double;
+ Tensor<1,deal_II_dimension>;
+ Tensor<2,deal_II_dimension> }
+
DEAL_II_VEC_TEMPLATES := { Vector; BlockVector }
SERIAL_VECTORS := { Vector<double>;
hp::DoFHandler<deal_II_dimension>;
MGDoFHandler<deal_II_dimension> }
+FEVALUES_BASES := { FEValuesBase<deal_II_dimension>;
+ FEFaceValuesBase<deal_II_dimension> }
+
SPARSITY_PATTERNS := { SparsityPattern;
CompressedSparsityPattern;
CompressedSetSparsityPattern;