mirror of
https://github.com/Z3Prover/z3
synced 2025-08-15 15:25:26 +00:00
add module for handling axioms for powers
This commit is contained in:
parent
9e2ec9d018
commit
e41dd91893
7 changed files with 343 additions and 201 deletions
29
src/math/lp/nla_powers.h
Normal file
29
src/math/lp/nla_powers.h
Normal file
|
@ -0,0 +1,29 @@
|
|||
/*++
|
||||
Copyright (c) 2017 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
nla_powers.h
|
||||
|
||||
Author:
|
||||
Lev Nachmanson (levnach)
|
||||
Nikolaj Bjorner (nbjorner)
|
||||
|
||||
Description:
|
||||
Refines bounds on powers.
|
||||
|
||||
--*/
|
||||
|
||||
#include "math/lp/nla_types.h"
|
||||
|
||||
namespace nla {
|
||||
|
||||
class core;
|
||||
|
||||
class powers {
|
||||
core& m_core;
|
||||
public:
|
||||
powers(core& c):m_core(c) {}
|
||||
lbool check(lpvar r, lpvar x, lpvar y, vector<lemma>&);
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue