mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 19:05:51 +00:00
22 lines
572 B
C++
22 lines
572 B
C++
/*++
|
|
Copyright (c) 2017 Microsoft Corporation
|
|
|
|
Author:
|
|
Lev Nachmanson (levnach)
|
|
Nikolaj Bjorner (nbjorner)
|
|
--*/
|
|
#pragma once
|
|
namespace nla {
|
|
class core;
|
|
class monotone : common {
|
|
public:
|
|
monotone(core *core);
|
|
void monotonicity_lemma();
|
|
private:
|
|
void monotonicity_lemma(monic const& m);
|
|
void monotonicity_lemma_gt(const monic& m);
|
|
void monotonicity_lemma_lt(const monic& m);
|
|
std::vector<rational> get_sorted_key(const monic& rm) const;
|
|
vector<std::pair<rational, lpvar>> get_sorted_key_with_rvars(const monic& a) const;
|
|
};
|
|
}
|