mirror of
https://github.com/Z3Prover/z3
synced 2025-08-19 17:50:23 +00:00
Reorganizing the code
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
3003ee5cb6
commit
dcf778a287
120 changed files with 10 additions and 4 deletions
37
src/rewriter/mk_simplified_app.h
Normal file
37
src/rewriter/mk_simplified_app.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
/*++
|
||||
Copyright (c) 2011 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
mk_simplified_app.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Functor for creating new simplified applications
|
||||
|
||||
Author:
|
||||
|
||||
Leonardo (leonardo) 2011-06-06
|
||||
|
||||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef _MK_SIMPLIFIED_APP_H_
|
||||
#define _MK_SIMPLIFIED_APP_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"params.h"
|
||||
#include"rewriter_types.h"
|
||||
|
||||
class mk_simplified_app {
|
||||
struct imp;
|
||||
imp * m_imp;
|
||||
public:
|
||||
mk_simplified_app(ast_manager & m, params_ref const & p = params_ref());
|
||||
~mk_simplified_app();
|
||||
|
||||
br_status mk_core(func_decl * decl, unsigned num, expr * const * args, expr_ref & result);
|
||||
void operator()(func_decl * decl, unsigned num, expr * const * args, expr_ref & result);
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue