3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-28 05:58:55 +00:00
z3/src/tactic/sls/sls_tactic.h
Leonardo de Moura 0990a2e045 using a consistent naming convention for naming tactic subfolders
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2012-10-24 15:11:44 -07:00

30 lines
463 B
C++

/*++
Copyright (c) 2012 Microsoft Corporation
Module Name:
sls_tactic.h
Abstract:
A Stochastic Local Search (SLS) tactic
Author:
Christoph (cwinter) 2012-02-29
Notes:
--*/
#ifndef _SLS_TACTIC_H_
#define _SLS_TACTIC_H_
#include"params.h"
class ast_manager;
class tactic;
tactic * mk_sls_tactic(ast_manager & m, params_ref const & p = params_ref());
tactic * mk_qfbv_sls_tactic(ast_manager & m, params_ref const & p = params_ref());
#endif