Concept to check if a non-linear solver with its non-linear operator satisfies requirements for path following.
More...
#include <ikarus/utils/concepts.hh>
template<typename NLS>
not(std::is_same_v<typename NLS::DifferentiableFunction::Domain, double> and
((traits::isSpecializationTypeAndNonTypes<
Eigen::Matrix, typename NLS::DifferentiableFunction::Traits::template Range<1>>::value) or
(traits::isSpecializationTypeNonTypeAndType<
Eigen::SparseMatrix, typename NLS::DifferentiableFunction::Traits::template Range<1>>::value)));
}
Concept to check if a non-linear solver with its non-linear operator satisfies requirements for path ...
Definition: utils/concepts.hh:237
- Template Parameters
-
NLS | The non-linear solver type. |