3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-19 20:33:38 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-07-04 15:56:30 -07:00
parent 10d0404175
commit d0e20e44ff
714 changed files with 714 additions and 2142 deletions

View file

@ -20,8 +20,7 @@ Notes:
--*/
#ifndef BIT_MATRIX_H_
#define BIT_MATRIX_H_
#pragma once
#include "util/region.h"
#include "util/vector.h"
@ -112,4 +111,3 @@ private:
inline std::ostream& operator<<(std::ostream& out, bit_matrix& m) { return m.display(out); }
inline std::ostream& operator<<(std::ostream& out, bit_matrix::row const& r) { return r.display(out); }
#endif

View file

@ -18,8 +18,7 @@ Revision History:
--*/
#ifndef __MODEL_BASED_OPT_H__
#define __MODEL_BASED_OPT_H__
#pragma once
#include "util/util.h"
#include "util/rational.h"
@ -207,4 +206,3 @@ inline std::ostream& operator<<(std::ostream& out, opt::model_based_opt::row con
inline std::ostream& operator<<(std::ostream& out, opt::model_based_opt::var const v) { return out << "v" << v.m_id; }
#endif

View file

@ -25,8 +25,7 @@ Notes:
A naive approach is to run an algorithm on max flow in order to get a spanning tree.
--*/
#ifndef NETWORK_FLOW_H_
#define NETWORK_FLOW_H_
#pragma once
#include "util/inf_rational.h"
#include "smt/diff_logic.h"
@ -197,4 +196,3 @@ namespace smt {
};
}
#endif

View file

@ -17,8 +17,7 @@ Notes:
--*/
#ifndef NETWORK_FLOW_DEF_H_
#define NETWORK_FLOW_DEF_H_
#pragma once
#include "math/simplex/network_flow.h"
#include "util/uint_set.h"
@ -523,4 +522,3 @@ namespace smt {
}
}
#endif

View file

@ -29,8 +29,7 @@ Notes:
--*/
#ifndef SIMPLEX_H_
#define SIMPLEX_H_
#pragma once
#include "math/simplex/sparse_matrix.h"
#include "util/mpq_inf.h"
@ -203,4 +202,3 @@ namespace simplex {
void ensure_rational_solution(simplex<mpq_ext>& s);
};
#endif

View file

@ -17,8 +17,7 @@ Notes:
--*/
#ifndef SIMPLEX_DEF_H_
#define SIMPLEX_DEF_H_
#pragma once
namespace simplex {
@ -1038,5 +1037,4 @@ namespace simplex {
};
#endif

View file

@ -18,8 +18,7 @@ Notes:
--*/
#ifndef SPARSE_MATRIX_DEF_H_
#define SPARSE_MATRIX_DEF_H_
#pragma once
#include "math/simplex/sparse_matrix.h"
#include "util/uint_set.h"
@ -582,4 +581,3 @@ namespace simplex {
};
#endif