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:
parent
147fb0d9c1
commit
529f116be0
6 changed files with 311 additions and 178 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue