mirror of
https://github.com/Z3Prover/z3
synced 2025-05-15 03:34:44 +00:00
replace lean to lp
Signed-off-by: Lev Nachmanson <levnach@microsoft.com>
This commit is contained in:
parent
f6a75600c2
commit
cc32e45471
117 changed files with 1726 additions and 1726 deletions
|
@ -12,7 +12,7 @@
|
|||
#include "util/lp/lp_settings.h"
|
||||
#include "util/lp/matrix.h"
|
||||
#include "util/lp/tail_matrix.h"
|
||||
namespace lean {
|
||||
namespace lp {
|
||||
#ifdef LEAN_DEBUG
|
||||
inline bool is_even(int k) { return (k/2)*2 == k; }
|
||||
#endif
|
||||
|
@ -86,7 +86,7 @@ class permutation_matrix : public tail_matrix<T, X> {
|
|||
void apply_reverse_from_right_to_X(vector<X> & w);
|
||||
|
||||
void set_val(unsigned i, unsigned pi) {
|
||||
lean_assert(i < size() && pi < size()); m_permutation[i] = pi; m_rev[pi] = i; }
|
||||
lp_assert(i < size() && pi < size()); m_permutation[i] = pi; m_rev[pi] = i; }
|
||||
|
||||
void transpose_from_left(unsigned i, unsigned j);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue