mirror of
https://github.com/Z3Prover/z3
synced 2025-05-02 13:27:01 +00:00
avoid creating full tables when negated variables are unitary, add lazy table infrastructure, fix coi_filter for relations, reduce dependencies on fixedpoing_parameters.hpp header file
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
0f9160a738
commit
716663b04a
40 changed files with 1221 additions and 126 deletions
|
@ -1164,7 +1164,7 @@ public:
|
|||
: dparser(ctx, ctx.get_manager()),
|
||||
m_bool_sort(ctx.get_manager()),
|
||||
m_short_sort(ctx.get_manager()),
|
||||
m_use_map_names(ctx.get_params().use_map_names()) {
|
||||
m_use_map_names(ctx.use_map_names()) {
|
||||
}
|
||||
~wpa_parser_impl() {
|
||||
reset_dealloc_values(m_sort_contents);
|
||||
|
|
|
@ -30,6 +30,7 @@ Notes:
|
|||
#include"scoped_ctrl_c.h"
|
||||
#include"scoped_timer.h"
|
||||
#include"trail.h"
|
||||
#include"fixedpoint_params.hpp"
|
||||
#include<iomanip>
|
||||
|
||||
|
||||
|
|
|
@ -27,6 +27,7 @@ Revision History:
|
|||
#include"dl_mk_slice.h"
|
||||
#include"filter_model_converter.h"
|
||||
#include"dl_transforms.h"
|
||||
#include"fixedpoint_params.hpp"
|
||||
|
||||
class horn_tactic : public tactic {
|
||||
struct imp {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue