mirror of
https://github.com/Z3Prover/z3
synced 2025-08-23 03:27:52 +00:00
20 lines
459 B
C++
20 lines
459 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);
|
|
};
|
|
}
|