mirror of
https://github.com/Z3Prover/z3
synced 2025-10-10 09:48:05 +00:00
30 lines
392 B
C++
30 lines
392 B
C++
/*++
|
|
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
|