mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 05:18:44 +00:00
31 lines
485 B
C++
31 lines
485 B
C++
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
horn_tactic.h
|
|
|
|
Abstract:
|
|
|
|
PDR as a tactic to solve Horn clauses.
|
|
|
|
Author:
|
|
|
|
Nikolaj Bjorner (nbjorner) 2012-11-16.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#ifndef _HORN_TACTIC_H_
|
|
#define _HORN_TACTIC_H_
|
|
|
|
#include"params.h"
|
|
class ast_manager;
|
|
class tactic;
|
|
|
|
tactic * mk_horn_tactic(ast_manager & m, params_ref const & p = params_ref());
|
|
/*
|
|
ADD_TACTIC("horn", "apply tactic for horn clauses.", "mk_horn_tactic(m, p)")
|
|
*/
|
|
#endif
|