3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

disable new code until pre-condition gets fixed

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-11-30 22:29:59 -08:00
parent 147fb0d9c1
commit 529f116be0
6 changed files with 311 additions and 178 deletions

View file

@ -665,3 +665,9 @@ void static_features::display(std::ostream & out) const {
void static_features::get_feature_vector(vector<double> & result) {
}
bool static_features::is_dense() const {
return
(m_num_uninterpreted_constants < 1000) &&
(m_num_arith_eqs + m_num_arith_ineqs) > m_num_uninterpreted_constants * 9;
}

View file

@ -188,7 +188,9 @@ struct static_features {
void get_feature_vector(vector<double> & result);
bool has_uf() const;
unsigned num_theories() const;
unsigned num_non_uf_theories() const;
unsigned num_non_uf_theories() const;
bool is_dense() const;
};