mirror of
https://github.com/Z3Prover/z3
synced 2026-03-08 06:14:52 +00:00
25 lines
316 B
C++
25 lines
316 B
C++
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
der_tactic.h
|
|
|
|
Abstract:
|
|
|
|
DER tactic
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2012-10-20
|
|
|
|
--*/
|
|
#ifndef _DER_TACTIC_H_
|
|
#define _DER_TACTIC_H_
|
|
|
|
class ast_manager;
|
|
class tactic;
|
|
|
|
tactic * mk_der_tactic(ast_manager & m);
|
|
|
|
#endif /* _DER_TACTIC_H_ */
|