mirror of
https://github.com/Z3Prover/z3
synced 2025-07-03 03:15:41 +00:00
fix #3014 by removing unused file
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
aaf2c3bdcc
commit
737cf63132
1 changed files with 0 additions and 38 deletions
|
@ -1,38 +0,0 @@
|
||||||
/*++
|
|
||||||
Copyright (c) 2017 Microsoft Corporation
|
|
||||||
|
|
||||||
Module Name:
|
|
||||||
|
|
||||||
<name>
|
|
||||||
|
|
||||||
Abstract:
|
|
||||||
|
|
||||||
<abstract>
|
|
||||||
|
|
||||||
Author:
|
|
||||||
|
|
||||||
Lev Nachmanson (levnach)
|
|
||||||
|
|
||||||
Revision History:
|
|
||||||
|
|
||||||
|
|
||||||
--*/
|
|
||||||
#pragma once
|
|
||||||
#include "math/lp/lp_settings.h"
|
|
||||||
#include "math/lp/lar_constraints.h"
|
|
||||||
namespace lp {
|
|
||||||
struct bound_signature {
|
|
||||||
unsigned m_i;
|
|
||||||
bool m_at_low;
|
|
||||||
bound_signature(unsigned i, bool at_low) :m_i(i), m_at_low(m_at_low) {}
|
|
||||||
bool at_upper_bound() const { return !m_at_lower_bound;}
|
|
||||||
bool at_lower_bound() const { return m_at_low;}
|
|
||||||
};
|
|
||||||
template <typename X>
|
|
||||||
struct signature_bound_evidence {
|
|
||||||
vector<bound_signature> m_evidence;
|
|
||||||
unsigned m_j; // found new bound
|
|
||||||
bool m_lower_bound;
|
|
||||||
X m_bound;
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Add table
Add a link
Reference in a new issue