mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
29 lines
361 B
C++
29 lines
361 B
C++
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
qflra_tactic.h
|
|
|
|
Abstract:
|
|
|
|
Tactic for QF_LRA
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2012-02-26
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#ifndef _QFLRA_TACTIC_
|
|
#define _QFLRA_TACTIC_
|
|
|
|
#include"params.h"
|
|
class ast_manager;
|
|
class tactic;
|
|
|
|
tactic * mk_qflra_tactic(ast_manager & m, params_ref const & p = params_ref());
|
|
|
|
#endif
|