3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-24 03:57:51 +00:00
z3/src/tactic/smtlogics/qflia_tactic.h
Nikolaj Bjorner 4bc044c982 update header guards to be C++ style. Fixes issue #9
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2015-07-08 23:18:40 -07:00

38 lines
592 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"params.h"
class ast_manager;
class tactic;
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