mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
pass resource limits by reference
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
bea0d45e6a
commit
32055a31db
5 changed files with 18 additions and 18 deletions
|
@ -51,8 +51,9 @@ void solver::pop(unsigned n) {
|
|||
m_core->pop(n);
|
||||
}
|
||||
|
||||
solver::solver(lp::lar_solver& s): m_core(alloc(core, s, m_res_limit)),
|
||||
m_nra(s, m_res_limit, *m_core) {
|
||||
solver::solver(lp::lar_solver& s, reslimit& limit):
|
||||
m_core(alloc(core, s, limit)),
|
||||
m_nra(s, limit, *m_core) {
|
||||
}
|
||||
|
||||
bool solver::influences_nl_var(lpvar j) const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue