3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-21 02:30:23 +00:00

remove unused code

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-01-17 18:03:46 -08:00
parent d084a19630
commit 2c55aa5466
7 changed files with 23 additions and 72 deletions

View file

@ -53,6 +53,6 @@ namespace nla {
vector<nla::ineq> const& literals() const;
vector<lp::fixed_equality> const& fixed_equalities() const;
vector<lp::equality> const& equalities() const;
bool check_feasible() const { return m_core->check_feasible(); }
bool should_check_feasible() const { return m_core->should_check_feasible(); }
};
}