mirror of
https://github.com/Z3Prover/z3
synced 2025-08-19 01:32:17 +00:00
40 lines
644 B
C++
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
|