3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 11:55:51 +00:00

use setter method to easier track updates to settings.

This commit is contained in:
Nikolaj Bjorner 2023-01-26 13:53:51 -08:00
parent 19fed09122
commit 0f86a00229
4 changed files with 9 additions and 9 deletions

View file

@ -336,8 +336,8 @@ public:
return m_simplex_strategy;
}
simplex_strategy_enum & simplex_strategy() {
return m_simplex_strategy;
void set_simplex_strategy(simplex_strategy_enum s) {
m_simplex_strategy = s;
}
bool use_lu() const {