3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-19 01:32:17 +00:00
z3/src/tactic/smtlogics/qflia_tactic.h
Nikolaj Bjorner 483a973b37 add pre-processing to default tactic
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2019-05-16 20:20:59 +03:00

40 lines
644 B
C++

/*++
Copyright (c) 2012 Microsoft Corporation
Module Name:
qflia_tactic.h
Abstract:
Tactic for QF_LRA
Author:
Leonardo (leonardo) 2012-02-26
Notes:
--*/
#ifndef QFLIA_TACTIC_H_
#define QFLIA_TACTIC_H_
#include "util/params.h"
class ast_manager;
class tactic;
tactic * mk_preamble_tactic(ast_manager& m);
tactic * mk_qflia_tactic(ast_manager & m, params_ref const & p = params_ref());
/*
ADD_TACTIC("qflia", "builtin strategy for solving QF_LIA problems.", "mk_qflia_tactic(m, p)")
*/
probe * mk_is_quasi_pb_probe();
/*
ADD_PROBE("is-quasi-pb", "true if the goal is quasi-pb.", "mk_is_quasi_pb_probe()")
*/
#endif