3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-11 02:08:07 +00:00

re-organize muz_qe into separate units

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-08-28 21:20:24 -07:00
parent 4597872be8
commit 0d56499e2d
131 changed files with 994 additions and 20069 deletions

View file

@ -0,0 +1,30 @@
/*++
Copyright (c) 2013 Microsoft Corporation
Module Name:
dl_transforms.h
Abstract:
Default transformations.
Author:
Nikolaj Bjorner (nbjorner) 2013-08-28.
Revision History:
Extracted from dl_context
--*/
#ifndef _DL_TRANSFORMS_H_
#define _DL_TRANSFORMS_H_
#include "dl_context.h"
namespace datalog {
void apply_default_transformation(context& ctx);
}
#endif