Skip to content
Snippets Groups Projects
Commit cbcb0a93 authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[MaL] added implementation error message

parent 398d287e
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
#define EIGENTOOLS_H_ #define EIGENTOOLS_H_
#include <vector> #include <vector>
#include <logog/include/logog.hpp>
#include "EigenMatrix.h" // for EigenMatrix::IndexType #include "EigenMatrix.h" // for EigenMatrix::IndexType
...@@ -37,9 +38,11 @@ void applyKnownSolution(Eigen::MatrixXd &A, Eigen::VectorXd &b, Eigen::VectorXd ...@@ -37,9 +38,11 @@ void applyKnownSolution(Eigen::MatrixXd &A, Eigen::VectorXd &b, Eigen::VectorXd
const std::vector<Eigen::MatrixXd::Index> &_vec_knownX_id, const std::vector<Eigen::MatrixXd::Index> &_vec_knownX_id,
const std::vector<double> &_vec_knownX_x, double penalty_scaling = 1e+10) const std::vector<double> &_vec_knownX_x, double penalty_scaling = 1e+10)
{ {
// TODO implement
(void) A; (void) b; (void) _vec_knownX_id; (void) _vec_knownX_x; (void) A; (void) b; (void) _vec_knownX_id; (void) _vec_knownX_x;
(void) penalty_scaling; (void) penalty_scaling;
ERR("Method not implemented."); // TODO implement
std::abort();
} }
} // MathLib } // MathLib
......
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