Skip to content

Commit

Permalink
test: fix mock
Browse files Browse the repository at this point in the history
  • Loading branch information
TendTo committed Mar 13, 2024
1 parent 0bb555c commit d474185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/solver/TestSoplexTheorySolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class MockSoplexTheorySolver : public SoplexTheorySolver {
MOCK_METHOD(std::vector<LiteralSet>, EnableLiteral, (const dlinear::Literal &lit), (override));
MOCK_METHOD(SatResult, CheckSat,
(const dlinear::Box &box, mpq_class *actual_precision, dlinear::LiteralSet &explanation), (override));
MOCK_METHOD(void, EnableSpxRow, (int, bool, const dlinear::Variables &), (override)) intboolconst Variables &;
MOCK_METHOD(void, EnableSpxRow, (int, bool, const dlinear::Variables &), (override));
const std::vector<Variable> &theory_col_to_var() const { return theory_col_to_var_; }
const std::vector<Literal> &theory_row_to_lit() const { return theory_row_to_lit_; }
const std::map<Variable::Id, int> &var_to_theory_col() const { return var_to_theory_col_; }
Expand Down

0 comments on commit d474185

Please sign in to comment.