mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
27 lines
393 B
C++
27 lines
393 B
C++
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
distribute_forall_tactic.h
|
|
|
|
Abstract:
|
|
|
|
<abstract>
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2012-02-18.
|
|
|
|
--*/
|
|
#ifndef _DISTRIBUTE_FORALL_TACTIC_H_
|
|
#define _DISTRIBUTE_FORALL_TACTIC_H_
|
|
|
|
#include"params.h"
|
|
class ast_manager;
|
|
class tactic;
|
|
|
|
tactic * mk_distribute_forall_tactic(ast_manager & m, params_ref const & p);
|
|
|
|
#endif
|