mirror of
https://github.com/Z3Prover/z3
synced 2025-05-09 00:35:47 +00:00
Reorganizing the code
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
ded42feeb6
commit
8b70f0b833
24 changed files with 1 additions and 0 deletions
28
src/model/model_pp.h
Normal file
28
src/model/model_pp.h
Normal file
|
@ -0,0 +1,28 @@
|
|||
/*++
|
||||
Copyright (c) 2011 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
model_pp.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Pretty printer for models for debugging purposes.
|
||||
|
||||
Author:
|
||||
|
||||
Leonardo de Moura (leonardo)
|
||||
|
||||
Revision History:
|
||||
|
||||
|
||||
--*/
|
||||
#ifndef _MODEL_PP_H_
|
||||
#define _MODEL_PP_H_
|
||||
|
||||
#include<iostream>
|
||||
class model_core;
|
||||
|
||||
void model_pp(std::ostream & out, model_core const & m);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue