mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 11:17:07 +00:00
29 lines
426 B
C++
29 lines
426 B
C++
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
default_tactic.h
|
|
|
|
Abstract:
|
|
|
|
General purpose tactic for the Z3 logic (when the logic is not specified).
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2012-02-22
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#ifndef _DEFAULT_TACTIC_
|
|
#define _DEFAULT_TACTIC_
|
|
|
|
#include"params.h"
|
|
class ast_manager;
|
|
class tactic;
|
|
|
|
tactic * mk_default_tactic(ast_manager & m, params_ref const & p = params_ref());
|
|
|
|
#endif
|