mirror of
https://github.com/Z3Prover/z3
synced 2025-09-27 11:49:01 +00:00
split muz_qe into two directories
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d795792304
commit
137339a2e1
174 changed files with 242 additions and 174 deletions
38
src/muz/dl_mk_different.h
Normal file
38
src/muz/dl_mk_different.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*++
|
||||
Copyright (c) 2013 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
dl_mk_different_symbolic.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Create Horn clauses for different symbolic transformation.
|
||||
|
||||
Author:
|
||||
|
||||
Nikolaj Bjorner (nbjorner) 2013-06-19
|
||||
|
||||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_DIFFERENT_SYMBOLIC_H_
|
||||
#define _DL_MK_DIFFERENT_SYMBOLIC_H_
|
||||
|
||||
#include"dl_rule_transformer.h"
|
||||
|
||||
namespace datalog {
|
||||
|
||||
class mk_different_symbolic : public rule_transformer::plugin {
|
||||
ast_manager& m;
|
||||
context& m_ctx;
|
||||
public:
|
||||
mk_different_symbolic(context & ctx, unsigned priority = 33037);
|
||||
~mk_different_symbolic();
|
||||
rule_set * operator()(rule_set const & source);
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_DIFFERENT_SYMBOLIC_H_ */
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue