mirror of
https://github.com/Z3Prover/z3
synced 2025-06-14 18:06:15 +00:00
add suggestions from #835
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
70bb92d016
commit
0765eea486
2 changed files with 2 additions and 1 deletions
|
@ -494,7 +494,7 @@ void macro_util::normalize_expr(app * head, expr * t, expr_ref & norm_t) const {
|
||||||
tout << "applying substitution to:\n" << mk_ll_pp(t, m_manager) << "\nsubstitution:\n";
|
tout << "applying substitution to:\n" << mk_ll_pp(t, m_manager) << "\nsubstitution:\n";
|
||||||
for (unsigned i = 0; i < var_mapping.size(); i++) {
|
for (unsigned i = 0; i < var_mapping.size(); i++) {
|
||||||
if (var_mapping[i] != 0)
|
if (var_mapping[i] != 0)
|
||||||
tout << "#" << i << " -> " << mk_ll_pp(var_mapping[i], m_manager);
|
tout << "#" << i << " -> " << mk_ll_pp(var_mapping[i], m_manager);
|
||||||
});
|
});
|
||||||
subst(t, var_mapping.size(), var_mapping.c_ptr(), norm_t);
|
subst(t, var_mapping.size(), var_mapping.c_ptr(), norm_t);
|
||||||
}
|
}
|
||||||
|
|
|
@ -885,6 +885,7 @@ namespace datalog {
|
||||||
|
|
||||||
class table_row_pair_reduce_fn {
|
class table_row_pair_reduce_fn {
|
||||||
public:
|
public:
|
||||||
|
virtual ~table_row_pair_reduce_fn() {}
|
||||||
/**
|
/**
|
||||||
\brief The function is called for pair of table rows that became duplicit due to projection.
|
\brief The function is called for pair of table rows that became duplicit due to projection.
|
||||||
The values that are in the first array after return from the function will be used for the
|
The values that are in the first array after return from the function will be used for the
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue