mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
init of m_active_vars_weights and fixes in is_simplified
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
b2d1bcc8cd
commit
0c126031b0
12 changed files with 129 additions and 92 deletions
|
@ -57,11 +57,11 @@ class nex_creator {
|
|||
svector<unsigned> m_active_vars_weights;
|
||||
|
||||
public:
|
||||
static char ch(unsigned j) {
|
||||
// std::stringstream s;
|
||||
// s << "v" << j;
|
||||
// return s.str();
|
||||
return (char)('a'+j);
|
||||
static std::string ch(unsigned j) {
|
||||
std::stringstream s;
|
||||
s << "v" << j;
|
||||
return s.str();
|
||||
// return (char)('a'+j);
|
||||
}
|
||||
|
||||
// assuming that every lpvar is less than this number
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue