mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
First complete version of Network Simplex
This commit is contained in:
parent
e715ccbc98
commit
b67d333cf9
6 changed files with 105 additions and 71 deletions
|
@ -67,7 +67,7 @@ public:
|
|||
s_integer const& get_s_integer() const { return *this; }
|
||||
s_integer const& get_infinitesimal() const { return zero(); }
|
||||
static bool is_rational() { return true; }
|
||||
s_integer const& get_rational() const { return *this; }
|
||||
s_integer const& get_rational() const { return *this; }
|
||||
s_integer & operator=(const s_integer & r) { m_val = r.m_val; return *this; }
|
||||
friend inline s_integer numerator(const s_integer & r) { return r; }
|
||||
friend inline s_integer denominator(const s_integer & r) { return one(); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue