mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 12:58:44 +00:00
29 lines
457 B
C
29 lines
457 B
C
/*++
|
|
Copyright (c) 2016 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
ackermannize_bv_tactic.h
|
|
|
|
Abstract:
|
|
|
|
Author:
|
|
|
|
Mikolas Janota
|
|
|
|
Revision History:
|
|
--*/
|
|
|
|
#ifndef _ACKERMANNIZE_TACTIC_H_
|
|
#define _ACKERMANNIZE_TACTIC_H_
|
|
#include"tactical.h"
|
|
|
|
tactic * mk_ackermannize_bv_tactic(ast_manager & m, params_ref const & p);
|
|
|
|
/*
|
|
ADD_TACTIC("ackermannize_bv", "A tactic for performing full Ackermannization on bv instances.", "mk_ackermannize_bv_tactic(m, p)")
|
|
*/
|
|
|
|
#endif
|
|
|