3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

improved SLS

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2014-03-21 15:06:31 -07:00
parent 6e285f06de
commit 76b11f2d12
4 changed files with 9 additions and 1 deletions

View file

@ -25,6 +25,9 @@ Notes:
namespace simplex {
template<typename Ext>
const typename simplex<Ext>::var_t simplex<Ext>::null_var = UINT_MAX;
template<typename Ext>
typename simplex<Ext>::row
simplex<Ext>::add_row(var_t base_var, unsigned num_vars, var_t const* vars, numeral const* coeffs) {