mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 10:25:18 +00:00
make sure that parameters are appended such that multiple paramters are not ignored on the solver
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
983f9abf15
commit
340f765983
|
@ -149,7 +149,7 @@ extern "C" {
|
|||
to_param_ref(p).validate(r);
|
||||
to_solver_ref(s)->updt_params(to_param_ref(p));
|
||||
}
|
||||
to_solver(s)->m_params = to_param_ref(p);
|
||||
to_solver(s)->m_params.append(to_param_ref(p));
|
||||
Z3_CATCH;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue