mirror of
https://github.com/Z3Prover/z3
synced 2025-04-11 11:43:36 +00:00
38 lines
703 B
C++
38 lines
703 B
C++
/*++
|
|
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
|