mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
fixing eufi
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b62d73f209
commit
9ba76a1332
5 changed files with 64 additions and 51 deletions
|
@ -761,11 +761,15 @@ namespace qe {
|
|||
val2rep.insert(val, rep);
|
||||
}
|
||||
}
|
||||
// TBD: this ignores types, need one use of 'distinct' per sort.
|
||||
// TBD: probably ignore distinct on values
|
||||
// TBD: ignore distinct on Booleans
|
||||
ptr_buffer<expr> reps;
|
||||
for (auto &kv : val2rep) {
|
||||
reps.push_back(kv.m_value);
|
||||
std::cout << mk_pp(kv.m_value, m) << "\n";
|
||||
}
|
||||
res.push_back(m.mk_distinct(reps.size(), reps.c_ptr()));
|
||||
// res.push_back(m.mk_distinct(reps.size(), reps.c_ptr()));
|
||||
}
|
||||
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue