mirror of
https://github.com/Z3Prover/z3
synced 2025-08-08 12:11:23 +00:00
re-enable pre-process
This commit is contained in:
parent
c9fa00aec1
commit
3f5eb7fcf2
10 changed files with 66 additions and 62 deletions
|
@ -44,8 +44,8 @@ namespace opt {
|
|||
}
|
||||
|
||||
public:
|
||||
wmax(maxsat_context& c, vector<soft>& s):
|
||||
maxsmt_solver_base(c, s),
|
||||
wmax(maxsat_context& c, vector<soft>& s, unsigned index):
|
||||
maxsmt_solver_base(c, s, index),
|
||||
m_trail(m),
|
||||
m_defs(m) {}
|
||||
|
||||
|
@ -304,8 +304,8 @@ namespace opt {
|
|||
|
||||
};
|
||||
|
||||
maxsmt_solver_base* mk_wmax(maxsat_context& c, vector<soft> & s) {
|
||||
return alloc(wmax, c, s);
|
||||
maxsmt_solver_base* mk_wmax(maxsat_context& c, vector<soft> & s, unsigned index) {
|
||||
return alloc(wmax, c, s, index);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue