mirror of
https://github.com/Z3Prover/z3
synced 2025-08-14 14:55:25 +00:00
31 lines
463 B
C++
31 lines
463 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_
|
|
#define _QFLIA_TACTIC_
|
|
|
|
#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)")
|
|
*/
|
|
|
|
#endif
|