mirror of
https://github.com/Z3Prover/z3
synced 2025-08-24 20:16:00 +00:00
- increase build version to 4.12.1. This prepares updated release for MacOs-11 build on x86 - move literal propagation mode in euf-egraph to a callback and traversal of equivalence class. Track antecedent by newest equality instead of root. This makes equality propagation to literals have similar behavior as in legacy solver and appears to result in a speedup (10% fewer conflicts on QF_UF/QG-classification/qg5/iso_icl478.smt2 in preliminary testing) - fix interaction of pre-processing and assumptions. Pre-processing has to freeze assumption literals so they don't get eliminated. This is similar to dependencies that are already frozen.
37 lines
603 B
C++
37 lines
603 B
C++
#pragma once
|
|
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
qffplra_tactic.h
|
|
|
|
Abstract:
|
|
|
|
Tactic for QF_FPLRA benchmarks.
|
|
|
|
Author:
|
|
|
|
Christoph (cwinter) 2018-04-24
|
|
|
|
|
|
## Tactic qffplra
|
|
|
|
|
|
--*/
|
|
#pragma once
|
|
|
|
#include "util/params.h"
|
|
class ast_manager;
|
|
class tactic;
|
|
|
|
tactic * mk_qffplra_tactic(ast_manager & m, params_ref const & p = params_ref());
|
|
/*
|
|
ADD_TACTIC("qffplra", "(try to) solve goal using the tactic for QF_FPLRA.", "mk_qffplra_tactic(m, p)")
|
|
*/
|
|
|
|
probe * mk_is_qffplra_probe();
|
|
/*
|
|
ADD_PROBE("is-qffplra", "true if the goal is in QF_FPLRA.", "mk_is_qffplra_probe()")
|
|
*/
|
|
|