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

[amg] reenable category check of MatrixHierarchy

parent 3686ed2d
No related branches found
No related tags found
No related merge requests found
......@@ -662,16 +662,8 @@ namespace Dune
: matrices_(const_cast<MatrixOperator&>(fineOperator)),
parallelInformation_(const_cast<ParallelInformation&>(pinfo))
{
#warning reenable category checks
// static_assert((static_cast<int>(MatrixOperator::category) ==
// static_cast<int>(SolverCategory::sequential)
// || static_cast<int>(MatrixOperator::category) ==
// static_cast<int>(SolverCategory::overlapping)
// || static_cast<int>(MatrixOperator::category) ==
// static_cast<int>(SolverCategory::nonoverlapping)),
// "MatrixOperator must be of category sequential or overlapping or nonoverlapping");
// if (static_cast<int>(MatrixOperator::category) != static_cast<int>(pinfo.getSolverCategory()))
// DUNE_THROW(ISTLError, "MatrixOperator and ParallelInformation must belong to the same category!");
if (SolverCategory::category(fineOperator) != pinfo.getSolverCategory())
DUNE_THROW(ISTLError, "MatrixOperator and ParallelInformation must belong to the same category!");
}
template<class M, class IS, class A>
......
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