mirror of
https://github.com/Z3Prover/z3
synced 2025-06-26 07:43:41 +00:00
23 lines
453 B
C
23 lines
453 B
C
/*++
|
|
Copyright (c) 2015 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
ackr_model_converter.h
|
|
|
|
Abstract:
|
|
|
|
Author:
|
|
|
|
Mikolas Janota
|
|
|
|
Revision History:
|
|
--*/
|
|
#pragma once
|
|
|
|
#include "ast/converters/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);
|
|
|