mirror of
https://github.com/Z3Prover/z3
synced 2025-06-23 14:23:40 +00:00
25 lines
534 B
C
25 lines
534 B
C
/*++
|
|
Copyright (c) 2015 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
ackr_model_converter.h
|
|
|
|
Abstract:
|
|
|
|
Author:
|
|
|
|
Mikolas Janota
|
|
|
|
Revision History:
|
|
--*/
|
|
#ifndef ACKR_MODEL_CONVERTER_H_
|
|
#define ACKR_MODEL_CONVERTER_H_
|
|
|
|
#include "tactic/model_converter.h"
|
|
#include "ackermannization/ackr_info.h"
|
|
|
|
model_converter * mk_ackr_model_converter(ast_manager & m, const ackr_info_ref & info, model_ref & abstr_model);
|
|
model_converter * mk_ackr_model_converter(ast_manager & m, const ackr_info_ref & info);
|
|
|
|
#endif /* LACKR_MODEL_CONVERTER_H_ */
|