numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
|
Definition of classes to wrap implicit problems to use as explicit problems. More...
#include <type_traits>
#include <utility>
#include <Eigen/LU>
#include "num_collect/base/concepts/eigen_solver_of.h"
#include "num_collect/ode/concepts/mass_problem.h"
#include "num_collect/ode/concepts/multi_variate_problem.h"
#include "num_collect/ode/concepts/single_variate_problem.h"
#include "num_collect/ode/evaluation_type.h"
Go to the source code of this file.
Classes | |
class | num_collect::ode::multi_variate_implicit_problem_wrapper< Problem, LinearEquationSolver > |
Class to wrap implicit problems to use as explicit problems. More... | |
class | num_collect::ode::single_variate_implicit_problem_wrapper< Problem > |
Class to wrap implicit problems to use as explicit problems. More... | |
Namespaces | |
namespace | num_collect |
Namespace of num_collect source codes. | |
namespace | num_collect::ode |
Namespace of solvers of ordinary differential equations (ODE). | |
Functions | |
template<concepts::single_variate_problem Problem> requires concepts::mass_problem<Problem> | |
auto | num_collect::ode::wrap_implicit_problem (Problem &&problem) -> single_variate_implicit_problem_wrapper< std::decay_t< Problem > > |
Wrap an implicit problem to use as an explicit problem. | |
Definition of classes to wrap implicit problems to use as explicit problems.
Definition in file implicit_problem_wrapper.h.