make equals const-qualified

release/4.3a0
Varun Agrawal 2024-08-24 06:35:17 -04:00
parent 0ae97fd020
commit fa33bca0c7
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ public:
virtual void print(const std::string& str = "") const;
bool equals(const NonlinearOptimizerParams& other, double tol = 1e-9);
bool equals(const NonlinearOptimizerParams& other, double tol = 1e-9) const;
inline bool isMultifrontal() const {
return (linearSolverType == MULTIFRONTAL_CHOLESKY)