mirror of
https://github.com/Z3Prover/z3
synced 2025-05-09 00:35:47 +00:00
Z3 sources
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
3f9edad676
commit
e9eab22e5c
1186 changed files with 381859 additions and 0 deletions
33
lib/quant_tactics.h
Normal file
33
lib/quant_tactics.h
Normal file
|
@ -0,0 +1,33 @@
|
|||
/*++
|
||||
Copyright (c) 2012 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
quant_tactics.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Tactics for benchmarks containing quantifiers.
|
||||
|
||||
Author:
|
||||
|
||||
Leonardo de Moura (leonardo) 2012-02-21.
|
||||
|
||||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _QUANT_TACTICS_H_
|
||||
#define _QUANT_TACTICS_H_
|
||||
|
||||
#include"params.h"
|
||||
class ast_manager;
|
||||
class tactic;
|
||||
|
||||
tactic * mk_ufnia_tactic(ast_manager & m, params_ref const & p);
|
||||
tactic * mk_uflra_tactic(ast_manager & m, params_ref const & p);
|
||||
tactic * mk_auflia_tactic(ast_manager & m, params_ref const & p);
|
||||
tactic * mk_auflira_tactic(ast_manager & m, params_ref const & p);
|
||||
tactic * mk_aufnira_tactic(ast_manager & m, params_ref const & p);
|
||||
tactic * mk_lra_tactic(ast_manager & m, params_ref const & p);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue