15class Laplace :
public Problem<SC,LO,GO,NO> {
20 typedef Problem<SC,LO,GO,NO> Problem_Type;
21 typedef typename Problem_Type::Matrix_Type Matrix_Type;
22 typedef typename Problem_Type::MatrixPtr_Type MatrixPtr_Type;
24 typedef typename Problem_Type::BlockMatrix_Type BlockMatrix_Type;
26 typedef typename Problem_Type::MultiVector_Type MultiVector_Type;
27 typedef typename Problem_Type::MultiVectorPtr_Type MultiVectorPtr_Type;
29 typedef typename Problem_Type::DomainConstPtr_Type DomainConstPtr_Type;
30 typedef typename Problem_Type::CommConstPtr_Type CommConstPtr_Type;
32 Laplace(
const DomainConstPtr_Type &domain, std::string FEType, ParameterListPtr_Type parameterList,
bool vectorLaplace =
false );
38 virtual void assemble( std::string type =
"" )
const;
40 virtual void getValuesOfInterest( vec_dbl_Type& values ){};
42 MatrixPtr_Type getMassMatrix()
const;
44 virtual void computeValuesOfInterestAndExport() {};