Skip to content
Snippets Groups Projects
Commit 5cd72e11 authored by Kilian Weishaupt's avatar Kilian Weishaupt
Browse files

[PartialReassembly] Make compile with g++5.3

* A known in bug in g++5.3 leads to a compiler error due to the
  trailing return type of the generic lambda in the supportsPartialReassembly
  and hasVertexColor method
* Replacing those methods with a struct providing the ()operator should
  fix that issue
parent 48ccd6bd
No related branches found
No related tags found
1 merge request!849[NewtonSolver] Make compile with g++5.3
...@@ -380,12 +380,12 @@ public: ...@@ -380,12 +380,12 @@ public:
using ParentType::ParentType; using ParentType::ParentType;
}; };
//! helper function to determine whether the an engine class has vertex colors //! helper struct to determine whether the an engine class has vertex colors
template<class Engine> struct hasVertexColor
auto hasVertexColor()
{ {
return isValid([](auto&& a) -> decltype(a.vertexColor(0)) {}).template check<Engine>(); template<class Engine>
} auto operator()(Engine&& e) -> decltype(e.vertexColor(0)) {};
};
/*! /*!
* \ingroup Assembly * \ingroup Assembly
...@@ -469,7 +469,7 @@ public: ...@@ -469,7 +469,7 @@ public:
EntityColor dofColor(size_t idx) const EntityColor dofColor(size_t idx) const
{ return engine_.dofColor(idx); } { return engine_.dofColor(idx); }
template<bool enable = decltype(hasVertexColor<Engine>())::value, template<bool enable = decltype(isValid(hasVertexColor()).template check<Engine>())::value,
typename std::enable_if_t<enable, int> = 0> typename std::enable_if_t<enable, int> = 0>
EntityColor vertexColor(size_t idx) const EntityColor vertexColor(size_t idx) const
{ return engine_.vertexColor(idx); } { return engine_.vertexColor(idx); }
......
...@@ -49,19 +49,15 @@ ...@@ -49,19 +49,15 @@
namespace Dumux { namespace Dumux {
//! helper function detecting if an assembler supports partial reassembly //! helper struct detecting if an assembler supports partial reassembly
template<class Assembler> struct supportsPartialReassembly
auto supportsPartialReassembly(const Assembler& assembler) noexcept
{ {
using SolutionVector = typename Assembler::ResidualType; template<class Assembler>
using Reassembler = PartialReassembler<Assembler>; auto operator()(Assembler&& a)
-> decltype(a.assembleJacobianAndResidual(std::declval<const typename Assembler::ResidualType&>(),
return isValid([](auto&& a) -> decltype( std::declval<const PartialReassembler<Assembler>*>()))
a.assembleJacobianAndResidual(std::declval<Assembler>(), {};
std::declval<const SolutionVector&>(), };
std::declval<const Reassembler*>())
){})(assembler);
}
/*! /*!
* \ingroup Nonlinear * \ingroup Nonlinear
...@@ -759,7 +755,7 @@ private: ...@@ -759,7 +755,7 @@ private:
//! assembleLinearSystem_ for assemblers that support partial reassembly //! assembleLinearSystem_ for assemblers that support partial reassembly
template<class A> template<class A>
auto assembleLinearSystem_(const A& assembler, const SolutionVector& uCurrentIter) auto assembleLinearSystem_(const A& assembler, const SolutionVector& uCurrentIter)
-> typename std::enable_if_t<decltype(supportsPartialReassembly(assembler))::value, void> -> typename std::enable_if_t<decltype(isValid(supportsPartialReassembly())(assembler))::value, void>
{ {
assembler_->assembleJacobianAndResidual(uCurrentIter, partialReassembler_.get()); assembler_->assembleJacobianAndResidual(uCurrentIter, partialReassembler_.get());
} }
...@@ -767,7 +763,7 @@ private: ...@@ -767,7 +763,7 @@ private:
//! assembleLinearSystem_ for assemblers that don't support partial reassembly //! assembleLinearSystem_ for assemblers that don't support partial reassembly
template<class A> template<class A>
auto assembleLinearSystem_(const A& assembler, const SolutionVector& uCurrentIter) auto assembleLinearSystem_(const A& assembler, const SolutionVector& uCurrentIter)
-> typename std::enable_if_t<!decltype(supportsPartialReassembly(assembler))::value, void> -> typename std::enable_if_t<!decltype(isValid(supportsPartialReassembly())(assembler))::value, void>
{ {
assembler_->assembleJacobianAndResidual(uCurrentIter); assembler_->assembleJacobianAndResidual(uCurrentIter);
} }
......
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