mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 12:58:44 +00:00
26 lines
467 B
C
26 lines
467 B
C
/*++
|
|
Copyright (c) 2016 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
ackermannize_bv_model_converter.h
|
|
|
|
Abstract:
|
|
|
|
|
|
Author:
|
|
|
|
Mikolas Janota (MikolasJanota)
|
|
|
|
Revision History:
|
|
--*/
|
|
#ifndef ACKERMANNIZE_BV_MODEL_CONVERTER_H_
|
|
#define ACKERMANNIZE_BV_MODEL_CONVERTER_H_
|
|
|
|
#include"model_converter.h"
|
|
#include"ackr_info.h"
|
|
|
|
model_converter * mk_ackermannize_bv_model_converter(ast_manager & m, const ackr_info_ref& info);
|
|
|
|
#endif /* ACKERMANNIZE_BV_MODEL_CONVERTER_H_ */
|