Skip to content
Snippets Groups Projects
Commit cb40ed6a authored by Linus Seelinger's avatar Linus Seelinger Committed by Christian Engwer
Browse files

[dynamic polymorphism] Add dynamic category to SuperLU

parent c2ab3f69
No related branches found
No related tags found
1 merge request!84Feature/dynamicpolymorphism
......@@ -283,6 +283,13 @@ namespace Dune
typedef Dune::BlockVector<
FieldVector<T,n>,
typename A::template rebind<FieldVector<T,n> >::other> range_type;
//! Category of the solver (see SolverCategory::Category)
virtual SolverCategory::Category category() const
{
return SolverCategory::Category::sequential;
}
/**
* @brief Constructs the SuperLU solver.
*
......
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