mirror of
https://github.com/Z3Prover/z3
synced 2025-08-25 12:35:59 +00:00
32 lines
501 B
C++
32 lines
501 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_qfbv_sls_tactic(ast_manager & m, params_ref const & p = params_ref());
|
|
|
|
/*
|
|
ADD_TACTIC("qfbv-sls", "(try to) solve using stochastic local search for QF_BV.", "mk_qfbv_sls_tactic(m, p)")
|
|
*/
|
|
|
|
#endif
|