mirror of
https://github.com/Z3Prover/z3
synced 2025-08-07 19:51:22 +00:00
using a consistent naming convention for naming tactic subfolders
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
67f5ed46c1
commit
0990a2e045
140 changed files with 14 additions and 12 deletions
33
src/tactic/smtlogics/quant_tactics.h
Normal file
33
src/tactic/smtlogics/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