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:
parent
1a0d68e1b7
commit
2e9b4f643a
|
@ -123,5 +123,9 @@ bool common::check_monomial(const monomial& m) const {
|
|||
return c().check_monomial(m);
|
||||
}
|
||||
|
||||
unsigned common::random() {
|
||||
return c().random();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -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();
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue