mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 19:27:06 +00:00
25 lines
329 B
C++
25 lines
329 B
C++
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
install_tactics.h
|
|
|
|
Abstract:
|
|
Install tactics in the SMT 2.0 frontend.
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2012-02-19
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#ifndef _INSTALL_TACTICS_H_
|
|
#define _INSTALL_TACTICS_H_
|
|
|
|
class tactic_manager;
|
|
void install_tactics(tactic_manager & ctx);
|
|
|
|
#endif
|