mirror of
https://github.com/Z3Prover/z3
synced 2025-07-18 02:16:40 +00:00
re-organize muz_qe into separate units
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
4597872be8
commit
0d56499e2d
131 changed files with 994 additions and 20069 deletions
36
src/muz/fp/dl_register_engine.h
Normal file
36
src/muz/fp/dl_register_engine.h
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*++
|
||||
Copyright (c) 2013 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
dl_register_engine.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Class for creating Datalog engines.
|
||||
|
||||
Author:
|
||||
|
||||
Nikolaj Bjorner (nbjorner) 2013-08-28
|
||||
|
||||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_REGISTER_ENGINE_H_
|
||||
#define _DL_REGISTER_ENGINE_H_
|
||||
|
||||
#include "dl_context.h"
|
||||
|
||||
namespace datalog {
|
||||
|
||||
class register_engine : public register_engine_base {
|
||||
context* m_ctx;
|
||||
public:
|
||||
register_engine();
|
||||
engine_base* mk_engine(DL_ENGINE engine_type);
|
||||
void set_context(context* ctx) { m_ctx = ctx; }
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue