mirror of
https://github.com/Z3Prover/z3
synced 2025-05-02 13:27:01 +00:00
add DDNF based engine
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8822bc1755
commit
b596828d23
11 changed files with 761 additions and 11 deletions
|
@ -22,6 +22,7 @@ Revision History:
|
|||
#include "tab_context.h"
|
||||
#include "rel_context.h"
|
||||
#include "pdr_dl_interface.h"
|
||||
#include "ddnf.h"
|
||||
#include "duality_dl_interface.h"
|
||||
|
||||
namespace datalog {
|
||||
|
@ -43,6 +44,8 @@ namespace datalog {
|
|||
return alloc(clp, *m_ctx);
|
||||
case DUALITY_ENGINE:
|
||||
return alloc(Duality::dl_interface, *m_ctx);
|
||||
case DDNF_ENGINE:
|
||||
return alloc(ddnf, *m_ctx);
|
||||
case LAST_ENGINE:
|
||||
UNREACHABLE();
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue