3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 20:38:43 +00:00
z3/src/tactic/smtlogics/qfufnra_tactic.h
2015-05-09 19:40:34 -07:00

32 lines
479 B
C++

/*++
Copyright (c) 2012 Microsoft Corporation
Module Name:
qfufnra_tactic.h
Abstract:
Tactic for QF_UFNRA
Author:
Leonardo (leonardo) 2012-02-28
Notes:
--*/
#ifndef _QFUFNRA_TACTIC_
#define _QFUFNRA_TACTIC_
#include"params.h"
class ast_manager;
class tactic;
tactic * mk_qfufnra_tactic(ast_manager & m, params_ref const & p = params_ref());
/*
ADD_TACTIC("qfufnra", "builtin strategy for solving QF_UNFRA problems.", "mk_qfufnra_tactic(m, p)")
*/
#endif