mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 04:48:45 +00:00
195 lines
7.3 KiB
C++
195 lines
7.3 KiB
C++
/*++
|
|
Copyright (c) 2017 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
<name>
|
|
|
|
Abstract:
|
|
|
|
<abstract>
|
|
|
|
Author:
|
|
Nikolaj Bjorner (nbjorner)
|
|
Lev Nachmanson (levnach)
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
#pragma once
|
|
|
|
#include "math/lp/nla_common.h"
|
|
#include "math/lp/nex.h"
|
|
#include "math/lp/nex_creator.h"
|
|
|
|
namespace nla {
|
|
class core;
|
|
|
|
struct grobner_stats {
|
|
long m_simplified;
|
|
long m_superposed;
|
|
long m_compute_steps;
|
|
unsigned m_max_expr_size;
|
|
unsigned m_max_expr_degree;
|
|
void reset() { memset(this, 0, sizeof(grobner_stats)); }
|
|
grobner_stats() { reset(); }
|
|
};
|
|
|
|
class grobner_core {
|
|
public:
|
|
class equation {
|
|
unsigned m_bidx; //!< position at m_equations_to_delete
|
|
nex * m_expr; // simplified expressionted monomials
|
|
common::ci_dependency * m_dep; //!< justification for the equality
|
|
public:
|
|
unsigned get_num_monomials() const {
|
|
switch(m_expr->type()) {
|
|
case expr_type::VAR: return 1;
|
|
case expr_type::SCALAR: return 0;
|
|
case expr_type::MUL: return 1;
|
|
case expr_type::SUM: return m_expr->size();
|
|
default: return 0;
|
|
}
|
|
}
|
|
// not guaranteed to return a nex_mul
|
|
nex const* get_monomial(unsigned idx) const {
|
|
switch(m_expr->type()) {
|
|
case expr_type::VAR:
|
|
case expr_type::SCALAR: UNREACHABLE();;
|
|
case expr_type::MUL:
|
|
SASSERT(idx == 0);
|
|
return m_expr;
|
|
case expr_type::SUM:
|
|
return m_expr->to_sum()[idx];
|
|
default: return nullptr;
|
|
}
|
|
}
|
|
const nex* expr() const { return m_expr; }
|
|
common::ci_dependency * dep() const { return m_dep; }
|
|
unsigned hash() const { return m_bidx; }
|
|
friend class grobner_core;
|
|
};
|
|
private:
|
|
typedef obj_hashtable<equation> equation_set;
|
|
typedef ptr_vector<equation> equation_vector;
|
|
typedef std::function<void (lp::explanation const& e, std::ostream& out)> print_expl_t;
|
|
// fields
|
|
nex_creator& m_nex_creator;
|
|
reslimit& m_limit;
|
|
print_expl_t m_print_explanation;
|
|
equation_vector m_equations_to_delete;
|
|
grobner_stats m_stats;
|
|
equation_set m_to_superpose;
|
|
equation_set m_to_simplify;
|
|
region m_alloc;
|
|
common::ci_value_manager m_val_manager;
|
|
mutable common::ci_dependency_manager m_dep_manager;
|
|
nex_lt m_lt;
|
|
bool m_changed_leading_term;
|
|
equation_set m_all_eqs;
|
|
unsigned m_grobner_eqs_threshold;
|
|
unsigned m_expr_size_limit;
|
|
public:
|
|
grobner_core(nex_creator& nc, reslimit& lim, unsigned eqs_threshold, unsigned expr_size_limit) :
|
|
m_nex_creator(nc),
|
|
m_limit(lim),
|
|
m_dep_manager(m_val_manager, m_alloc),
|
|
m_changed_leading_term(false),
|
|
m_grobner_eqs_threshold(eqs_threshold),
|
|
m_expr_size_limit(expr_size_limit)
|
|
{}
|
|
|
|
~grobner_core();
|
|
void reset();
|
|
bool compute_basis_loop();
|
|
void assert_eq_0(nex*, common::ci_dependency * dep);
|
|
equation_set const& equations();
|
|
common::ci_dependency_manager& dep() const { return m_dep_manager; }
|
|
|
|
void display_equations(std::ostream& out, equation_set const& v, char const* header) const;
|
|
std::ostream& display_equation(std::ostream& out, const equation& eq) const;
|
|
std::ostream& display(std::ostream& out) const;
|
|
|
|
void operator=(print_expl_t& pe) { m_print_explanation = pe; }
|
|
|
|
private:
|
|
bool compute_basis_step();
|
|
|
|
bool simplify_source_target(equation const& source, equation& target);
|
|
void simplify_using_to_superpose(equation &);
|
|
bool simplify_target_monomials(equation const& source, equation& target);
|
|
void process_simplified_target(equation* target, ptr_buffer<equation>& to_remove);
|
|
bool simplify_to_superpose_with_eq(equation*);
|
|
void simplify_m_to_simplify(equation*);
|
|
equation* pick_next();
|
|
bool canceled();
|
|
void superpose(equation * eq1, equation * eq2);
|
|
void superpose(equation * eq);
|
|
bool find_b_c(const nex *ab, const nex* ac, nex_mul*& b, nex_mul*& c);
|
|
bool find_b_c_check_only(const nex* ab, const nex* ac) const;
|
|
bool is_trivial(equation* ) const;
|
|
bool is_simpler(equation * eq1, equation * eq2);
|
|
void del_equations(unsigned old_size);
|
|
void del_equation(equation * eq);
|
|
void init_equation(equation* eq, nex*, common::ci_dependency* d);
|
|
|
|
void insert_to_simplify(equation *eq) {
|
|
TRACE("grobner", display_equation(tout, *eq););
|
|
m_to_simplify.insert(eq);
|
|
}
|
|
void insert_to_superpose(equation *eq) {
|
|
SASSERT(m_nex_creator.is_simplified(*eq->expr()));
|
|
TRACE("grobner", display_equation(tout, *eq););
|
|
m_to_superpose.insert(eq);
|
|
}
|
|
const nex * get_highest_monomial(const nex * e) const;
|
|
bool simplify_target_monomials_sum(equation const&, equation&, nex_sum&, const nex&);
|
|
unsigned find_divisible(nex_sum const&, const nex&) const;
|
|
void simplify_target_monomials_sum_j(equation const&, equation&, nex_sum&, const nex&, unsigned, bool);
|
|
bool divide_ignore_coeffs_check_only(nex const& , const nex&) const;
|
|
bool divide_ignore_coeffs_check_only_nex_mul(nex_mul const&, nex const&) const;
|
|
nex_mul * divide_ignore_coeffs_perform(nex* , const nex&);
|
|
nex_mul * divide_ignore_coeffs_perform_nex_mul(nex_mul const& , const nex&);
|
|
nex * expr_superpose(nex const* e1, nex const* e2, const nex* ab, const nex* ac, nex_mul* b, nex_mul* c);
|
|
void add_mul_skip_first(nex_creator::sum_factory& sf, const rational& beta, nex const*e, nex_mul* c);
|
|
bool done();
|
|
unsigned num_of_equations() const { return m_to_simplify.size() + m_to_superpose.size(); }
|
|
void update_stats_max_degree_and_size(const equation*);
|
|
|
|
std::ostream& print_stats(std::ostream&) const;
|
|
std::ostream& display_dependency(std::ostream& out, common::ci_dependency*) const;
|
|
bool equation_is_too_complex(const equation* eq) const {
|
|
return eq->expr()->size() > m_expr_size_limit;
|
|
}
|
|
#ifdef Z3DEBUG
|
|
bool test_find_b_c(const nex* ab, const nex* ac, const nex_mul* b, const nex_mul* c);
|
|
bool test_find_b(const nex* ab, const nex_mul* b);
|
|
#endif
|
|
};
|
|
|
|
class grobner : common {
|
|
grobner_core m_gc;
|
|
unsigned m_reported;
|
|
lp::int_set m_rows;
|
|
bool m_look_for_fixed_vars_in_rows;
|
|
public:
|
|
grobner(core *, intervals *);
|
|
void grobner_lemmas();
|
|
~grobner() {}
|
|
private:
|
|
void find_nl_cluster();
|
|
void prepare_rows_and_active_vars();
|
|
void add_var_and_its_factors_to_q_and_collect_new_rows(lpvar j, svector<lpvar>& q);
|
|
void init();
|
|
void compute_basis();
|
|
std::unordered_set<lpvar> get_vars_of_expr_with_opening_terms(const nex* e);
|
|
void display_matrix(std::ostream & out) const;
|
|
std::ostream& display(std::ostream& out) const { return m_gc.display(out); }
|
|
void add_row(unsigned);
|
|
void check_eq(grobner_core::equation*);
|
|
void register_report();
|
|
|
|
}; // end of grobner
|
|
}
|