mirror of
https://github.com/Z3Prover/z3
synced 2025-10-04 06:53:58 +00:00
fix build
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
ce04c18a7a
commit
e5826b957f
4 changed files with 15 additions and 7 deletions
|
@ -64,6 +64,13 @@ expr * poly_rewriter<Config>::get_power_body(expr * t, rational & k) {
|
|||
return t;
|
||||
}
|
||||
|
||||
template<typename Config>
|
||||
bool poly_rewriter<Config>::is_zero(expr* e) const {
|
||||
rational v;
|
||||
return is_numeral(e, v) && v.is_zero();
|
||||
}
|
||||
|
||||
|
||||
template<typename Config>
|
||||
expr * poly_rewriter<Config>::mk_mul_app(unsigned num_args, expr * const * args) {
|
||||
switch (num_args) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue