mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
outline for monomial bound propagation
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
127ef59ce4
commit
bda29ca26a
6 changed files with 148 additions and 0 deletions
27
src/math/lp/monomial_bounds.h
Normal file
27
src/math/lp/monomial_bounds.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
/*++
|
||||
Copyright (c) 2020 Microsoft Corporation
|
||||
|
||||
Author:
|
||||
Nikolaj Bjorner (nbjorner)
|
||||
Lev Nachmanson (levnach)
|
||||
|
||||
--*/
|
||||
#pragma once
|
||||
|
||||
#include "math/lp/nla_common.h"
|
||||
#include "math/lp/nla_intervals.h"
|
||||
#include "math/lp/nex.h"
|
||||
#include "math/lp/cross_nested.h"
|
||||
#include "math/lp/u_set.h"
|
||||
|
||||
namespace nla {
|
||||
class core;
|
||||
|
||||
class monomial_bounds : common {
|
||||
void var2interval(lpvar v, scoped_dep_interval& i);
|
||||
bool propagate_up(monic const& m);
|
||||
public:
|
||||
monomial_bounds(core* core);
|
||||
bool operator()();
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue