mirror of
https://github.com/Z3Prover/z3
synced 2025-08-01 17:03:18 +00:00
23 lines
380 B
C
23 lines
380 B
C
/*++
|
|
Copyright (c) 2016 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
ackermannize_bv_model_converter.h
|
|
|
|
Abstract:
|
|
|
|
|
|
Author:
|
|
|
|
Mikolas Janota (MikolasJanota)
|
|
|
|
Revision History:
|
|
--*/
|
|
#pragma once
|
|
|
|
#include "ast/converters/model_converter.h"
|
|
#include "ackermannization/ackr_info.h"
|
|
|
|
model_converter * mk_ackermannize_bv_model_converter(ast_manager & m, const ackr_info_ref& info);
|
|
|