Skip to content
Snippets Groups Projects
Commit d46d992a authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MaL/Eigen] Remove unused applyKnownSolution.

parent 820c9e69
No related branches found
No related tags found
No related merge requests found
...@@ -34,15 +34,4 @@ void applyKnownSolution(EigenMatrix &A, EigenVector &b, EigenVector &/*x*/, ...@@ -34,15 +34,4 @@ void applyKnownSolution(EigenMatrix &A, EigenVector &b, EigenVector &/*x*/,
const std::vector<EigenMatrix::IndexType> &vec_knownX_id, const std::vector<EigenMatrix::IndexType> &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);
inline void applyKnownSolution(
Eigen::MatrixXd const& A, Eigen::VectorXd const& b, Eigen::VectorXd& /*x*/,
const std::vector<Eigen::MatrixXd::Index>& _vec_knownX_id,
const std::vector<double>& _vec_knownX_x, double penalty_scaling = 1e+10)
{
(void) A; (void) b; (void) _vec_knownX_id; (void) _vec_knownX_x;
(void) penalty_scaling;
OGS_FATAL("Method not implemented."); // TODO implement
}
} // namespace MathLib } // namespace 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