Skip to content
Snippets Groups Projects
Commit 6381cf10 authored by Christian Engwer's avatar Christian Engwer
Browse files

[dynamic polymorphism] specialize category(...) for getSolverCategory()

getSolverCategory() is used by the AMG communication layer. For convinience
we add this new specialization of category(...)
parent b03d74ff
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,12 @@ namespace Dune {
}
#ifndef DOXYGEN
template<typename OP>
static Category category(const OP& op, decltype(op.getSolverCategory())* = nullptr)
{
return op.getSolverCategory();
}
template<typename OP>
static Category category(const OP& op, decltype(op.category)* = nullptr)
{
......
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