Skip to content
Snippets Groups Projects
Commit 235fea3b authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Merge branch 'develop' of geraldine.fjfi.cvut.cz:/local/projects/tnl/tnl into develop

parents 5bcc2c6d 358d52ff
No related branches found
No related tags found
No related merge requests found
......@@ -64,14 +64,11 @@ class heatEquationSetter
typedef Device DeviceType;
typedef Index IndexType;
typedef Containers::StaticVector< MeshType::meshDimensions, Real > Vertex;
static bool run( const Config::ParameterContainer& parameters )
{
enum { Dimensions = MeshType::meshDimensions };
typedef Operators::LinearDiffusion< MeshType, Real, Index > ApproximateOperator;
typedef Functions::Analytic::Constant< Dimensions, Real > RightHandSide;
typedef Containers::StaticVector < MeshType::meshDimensions, Real > Vertex;
String boundaryConditionsType = parameters.getParameter< String >( "boundary-conditions-type" );
if( parameters.checkParameter( "boundary-conditions-constant" ) )
......
......@@ -116,7 +116,7 @@ bool SolverConfig< ConfigTag, ProblemConfig >::configSetup( Config::ConfigDescri
if( ConfigTagSemiImplicitSolver< ConfigTag, SemiImplicitSORSolverTag >::enabled )
config.addEntryEnum( "sor" );
#ifdef HAVE_UMFPACK
if( MeshConfigSemiImplicitSolver< MeshConfig, SemiImplicitUmfpackSolverTag >::enabled )
if( ConfigTagSemiImplicitSolver< ConfigTag, SemiImplicitUmfpackSolverTag >::enabled )
config.addEntryEnum( "umfpack" );
#endif
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment