3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 13:28:47 +00:00

fix a reference to random

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-04-15 15:42:28 -07:00
parent 1a0d68e1b7
commit 2e9b4f643a
2 changed files with 5 additions and 1 deletions

View file

@ -123,5 +123,9 @@ bool common::check_monomial(const monomial& m) const {
return c().check_monomial(m);
}
unsigned common::random() {
return c().random();
}
}

View file

@ -85,6 +85,6 @@ struct common {
std::ostream& print_rooted_monomial(const rooted_mon &, std::ostream& out) const;
std::ostream& print_rooted_monomial_with_vars(const rooted_mon&, std::ostream& out) const;
bool check_monomial(const monomial&) const;
unsigned random();
};
}