3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-19 09:40:20 +00:00

porting more

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-10-28 19:52:37 -07:00
parent bfb3db8b13
commit d08e61219b
5 changed files with 65 additions and 53 deletions

View file

@ -259,8 +259,12 @@ namespace sat {
throw sat_param_exception("invalid PB lemma format: 'cardinality' or 'pb' expected");
m_card_solver = p.cardinality_solver();
m_xor_solver = false; // prevent users from playing with this option
m_xor_enable = p.xor_enable();
m_xor_gauss_max_matrix_rows = p.xor_gauss_max_matrix_rows();
m_xor_gauss_min_matrix_rows = p.xor_gauss_min_matrix_rows();
m_xor_gauss_max_matrix_columns = p.xor_gauss_max_matrix_columns();
m_xor_gauss_max_num_matrices = p.xor_gauss_max_num_matrices();
sat_simplifier_params ssp(_p);
m_elim_vars = ssp.elim_vars();