Select Git revision
test_FunctionProcessor.cpp
-
Stéphane Del Pino authored
Also add a few tests
Stéphane Del Pino authoredAlso add a few tests
LinearSolverModule.hpp 391 B
#ifndef LINEAR_SOLVER_MODULE_HPP
#define LINEAR_SOLVER_MODULE_HPP
#include <language/modules/BuiltinModule.hpp>
class LinearSolverModule : public BuiltinModule
{
public:
std::string_view
name() const final
{
return "linear_solver";
}
void registerOperators() const final;
LinearSolverModule();
~LinearSolverModule() = default;
};
#endif // LINEAR_SOLVER_MODULE_HPP