mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
update header guards to be C++ style. Fixes issue #9
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f145ceecb4
commit
4bc044c982
676 changed files with 1679 additions and 1619 deletions
|
@ -18,8 +18,8 @@ Notes:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _BIND_VARIABLES_H_
|
||||
#define _BIND_VARIABLES_H_
|
||||
#ifndef BIND_VARIABLES_H_
|
||||
#define BIND_VARIABLES_H_
|
||||
|
||||
#include"ast.h"
|
||||
|
||||
|
@ -48,4 +48,4 @@ public:
|
|||
void add_var(app* v);
|
||||
};
|
||||
|
||||
#endif /* _BIND_VARIABLES_H_ */
|
||||
#endif /* BIND_VARIABLES_H_ */
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_CONTEXT_H_
|
||||
#define _DL_CONTEXT_H_
|
||||
#ifndef DL_CONTEXT_H_
|
||||
#define DL_CONTEXT_H_
|
||||
|
||||
#ifdef _CYGWIN
|
||||
#undef min
|
||||
|
@ -586,5 +586,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_CONTEXT_H_ */
|
||||
#endif /* DL_CONTEXT_H_ */
|
||||
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _DL_COSTS_H_
|
||||
#define _DL_COSTS_H_
|
||||
#ifndef DL_COSTS_H_
|
||||
#define DL_COSTS_H_
|
||||
|
||||
#include<iosfwd>
|
||||
|
||||
|
@ -111,5 +111,5 @@ namespace datalog {
|
|||
};
|
||||
};
|
||||
|
||||
#endif /* _DL_COSTS_H_ */
|
||||
#endif /* DL_COSTS_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_ENGINE_BASE_H_
|
||||
#define _DL_ENGINE_BASE_H_
|
||||
#ifndef DL_ENGINE_BASE_H_
|
||||
#define DL_ENGINE_BASE_H_
|
||||
|
||||
#include "model.h"
|
||||
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _DL_RULE_H_
|
||||
#define _DL_RULE_H_
|
||||
#ifndef DL_RULE_H_
|
||||
#define DL_RULE_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"dl_costs.h"
|
||||
|
@ -387,5 +387,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_RULE_H_ */
|
||||
#endif /* DL_RULE_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_RULE_SET_H_
|
||||
#define _DL_RULE_SET_H_
|
||||
#ifndef DL_RULE_SET_H_
|
||||
#define DL_RULE_SET_H_
|
||||
|
||||
#include"obj_hashtable.h"
|
||||
#include"dl_rule.h"
|
||||
|
@ -279,5 +279,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_RULE_SET_H_ */
|
||||
#endif /* DL_RULE_SET_H_ */
|
||||
|
||||
|
|
|
@ -18,8 +18,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _DL_RULE_SUBSUMPTION_INDEX_H_
|
||||
#define _DL_RULE_SUBSUMPTION_INDEX_H_
|
||||
#ifndef DL_RULE_SUBSUMPTION_INDEX_H_
|
||||
#define DL_RULE_SUBSUMPTION_INDEX_H_
|
||||
|
||||
#include "dl_context.h"
|
||||
|
||||
|
@ -61,5 +61,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_RULE_SUBSUMPTION_INDEX_H_ */
|
||||
#endif /* DL_RULE_SUBSUMPTION_INDEX_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_RULE_TRANSFORMER_H_
|
||||
#define _DL_RULE_TRANSFORMER_H_
|
||||
#ifndef DL_RULE_TRANSFORMER_H_
|
||||
#define DL_RULE_TRANSFORMER_H_
|
||||
|
||||
#include"map.h"
|
||||
#include"vector.h"
|
||||
|
@ -113,5 +113,5 @@ namespace datalog {
|
|||
};
|
||||
};
|
||||
|
||||
#endif /* _DL_RULE_TRANSFORMER_H_ */
|
||||
#endif /* DL_RULE_TRANSFORMER_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_UTIL_H_
|
||||
#define _DL_UTIL_H_
|
||||
#ifndef DL_UTIL_H_
|
||||
#define DL_UTIL_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"hashtable.h"
|
||||
|
@ -733,5 +733,5 @@ namespace datalog {
|
|||
bool read_uint64(const char * & s, uint64 & res);
|
||||
};
|
||||
|
||||
#endif /* _DL_UTIL_H_ */
|
||||
#endif /* DL_UTIL_H_ */
|
||||
|
||||
|
|
|
@ -22,8 +22,8 @@ Copyright (c) 2015 Microsoft Corporation
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _HNF_H_
|
||||
#define _HNF_H_
|
||||
#ifndef HNF_H_
|
||||
#define HNF_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"params.h"
|
||||
|
@ -51,4 +51,4 @@ class hnf {
|
|||
func_decl_ref_vector const& get_fresh_predicates();
|
||||
};
|
||||
|
||||
#endif /* _HNF_H_ */
|
||||
#endif /* HNF_H_ */
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _PROOF_UTILS_H_
|
||||
#define _PROOF_UTILS_H_
|
||||
#ifndef PROOF_UTILS_H_
|
||||
#define PROOF_UTILS_H_
|
||||
|
||||
class proof_utils {
|
||||
public:
|
||||
|
|
|
@ -18,8 +18,8 @@ Notes:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _RULE_PROPERTIES_H_
|
||||
#define _RULE_PROPERTIES_H_
|
||||
#ifndef RULE_PROPERTIES_H_
|
||||
#define RULE_PROPERTIES_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"datatype_decl_plugin.h"
|
||||
|
@ -62,4 +62,4 @@ namespace datalog {
|
|||
};
|
||||
}
|
||||
|
||||
#endif /* _RULE_PROPERTIES_H_ */
|
||||
#endif /* RULE_PROPERTIES_H_ */
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _DL_BMC_ENGINE_H_
|
||||
#define _DL_BMC_ENGINE_H_
|
||||
#ifndef DL_BMC_ENGINE_H_
|
||||
#define DL_BMC_ENGINE_H_
|
||||
|
||||
#include "params.h"
|
||||
#include "statistics.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _CLP_CONTEXT_H_
|
||||
#define _CLP_CONTEXT_H_
|
||||
#ifndef CLP_CONTEXT_H_
|
||||
#define CLP_CONTEXT_H_
|
||||
|
||||
#include "ast.h"
|
||||
#include "lbool.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DDNF__H_
|
||||
#define _DDNF__H_
|
||||
#ifndef DDNF__H_
|
||||
#define DDNF__H_
|
||||
|
||||
#include "ast.h"
|
||||
#include "lbool.h"
|
||||
|
|
|
@ -18,8 +18,8 @@
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _DUALITY_DL_INTERFACE_H_
|
||||
#define _DUALITY_DL_INTERFACE_H_
|
||||
#ifndef DUALITY_DL_INTERFACE_H_
|
||||
#define DUALITY_DL_INTERFACE_H_
|
||||
|
||||
#include "lbool.h"
|
||||
#include "dl_rule.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DATALOG_PARSER_H_
|
||||
#define _DATALOG_PARSER_H_
|
||||
#ifndef DATALOG_PARSER_H_
|
||||
#define DATALOG_PARSER_H_
|
||||
|
||||
#include "ast.h"
|
||||
#include "dl_context.h"
|
||||
|
|
|
@ -15,8 +15,8 @@ Author:
|
|||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_CMDS_H_
|
||||
#define _DL_CMDS_H_
|
||||
#ifndef DL_CMDS_H_
|
||||
#define DL_CMDS_H_
|
||||
|
||||
#include "ast.h"
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_REGISTER_ENGINE_H_
|
||||
#define _DL_REGISTER_ENGINE_H_
|
||||
#ifndef DL_REGISTER_ENGINE_H_
|
||||
#define DL_REGISTER_ENGINE_H_
|
||||
|
||||
#include "dl_context.h"
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _HORN_TACTIC_H_
|
||||
#define _HORN_TACTIC_H_
|
||||
#ifndef HORN_TACTIC_H_
|
||||
#define HORN_TACTIC_H_
|
||||
|
||||
#include"params.h"
|
||||
class ast_manager;
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _PDR_CLOSURE_H_
|
||||
#define _PDR_CLOSURE_H_
|
||||
#ifndef PDR_CLOSURE_H_
|
||||
#define PDR_CLOSURE_H_
|
||||
|
||||
#include "arith_decl_plugin.h"
|
||||
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _PDR_CONTEXT_H_
|
||||
#define _PDR_CONTEXT_H_
|
||||
#ifndef PDR_CONTEXT_H_
|
||||
#define PDR_CONTEXT_H_
|
||||
|
||||
#ifdef _CYGWIN
|
||||
#undef min
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _PDR_DL_INTERFACE_H_
|
||||
#define _PDR_DL_INTERFACE_H_
|
||||
#ifndef PDR_DL_INTERFACE_H_
|
||||
#define PDR_DL_INTERFACE_H_
|
||||
|
||||
#include "lbool.h"
|
||||
#include "dl_rule.h"
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _PDR_FARKAS_LEARNER_H_
|
||||
#define _PDR_FARKAS_LEARNER_H_
|
||||
#ifndef PDR_FARKAS_LEARNER_H_
|
||||
#define PDR_FARKAS_LEARNER_H_
|
||||
|
||||
#include "arith_decl_plugin.h"
|
||||
#include "ast_translation.h"
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _PDR_GENERALIZERS_H_
|
||||
#define _PDR_GENERALIZERS_H_
|
||||
#ifndef PDR_GENERALIZERS_H_
|
||||
#define PDR_GENERALIZERS_H_
|
||||
|
||||
#include "pdr_context.h"
|
||||
#include "pdr_closure.h"
|
||||
|
|
|
@ -18,8 +18,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _PDR_MANAGER_H_
|
||||
#define _PDR_MANAGER_H_
|
||||
#ifndef PDR_MANAGER_H_
|
||||
#define PDR_MANAGER_H_
|
||||
|
||||
#include <utility>
|
||||
#include <map>
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _PROP_SOLVER_H_
|
||||
#define _PROP_SOLVER_H_
|
||||
#ifndef PROP_SOLVER_H_
|
||||
#define PROP_SOLVER_H_
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
|
|
@ -18,8 +18,8 @@ Revision History:
|
|||
--*/
|
||||
|
||||
|
||||
#ifndef _REACHABLE_CACHE_H_
|
||||
#define _REACHABLE_CACHE_H_
|
||||
#ifndef REACHABLE_CACHE_H_
|
||||
#define REACHABLE_CACHE_H_
|
||||
#include "ast.h"
|
||||
#include "ref_vector.h"
|
||||
#include "pdr_manager.h"
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _PDR_SMT_CONTEXT_MANAGER_H_
|
||||
#define _PDR_SMT_CONTEXT_MANAGER_H_
|
||||
#ifndef PDR_SMT_CONTEXT_MANAGER_H_
|
||||
#define PDR_SMT_CONTEXT_MANAGER_H_
|
||||
|
||||
#include "smt_kernel.h"
|
||||
#include "func_decl_dependencies.h"
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _SYM_MUX_H_
|
||||
#define _SYM_MUX_H_
|
||||
#ifndef SYM_MUX_H_
|
||||
#define SYM_MUX_H_
|
||||
|
||||
#include "ast.h"
|
||||
#include "map.h"
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _PDR_UTIL_H_
|
||||
#define _PDR_UTIL_H_
|
||||
#ifndef PDR_UTIL_H_
|
||||
#define PDR_UTIL_H_
|
||||
|
||||
#include "ast.h"
|
||||
#include "ast_pp.h"
|
||||
|
|
|
@ -11,8 +11,8 @@ Abstract:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _AIG_EXPORTER_H_
|
||||
#define _AIG_EXPORTER_H_
|
||||
#ifndef AIG_EXPORTER_H_
|
||||
#define AIG_EXPORTER_H_
|
||||
|
||||
#include "aig.h"
|
||||
#include "dl_rule_set.h"
|
||||
|
|
|
@ -19,8 +19,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _CHECK_RELATION_H_
|
||||
#define _CHECK_RELATION_H_
|
||||
#ifndef CHECK_RELATION_H_
|
||||
#define CHECK_RELATION_H_
|
||||
|
||||
#include "doc.h"
|
||||
#include "dl_base.h"
|
||||
|
@ -168,5 +168,5 @@ namespace datalog {
|
|||
};
|
||||
};
|
||||
|
||||
#endif /* _CHECK_RELATION_H_ */
|
||||
#endif /* CHECK_RELATION_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_BASE_H_
|
||||
#define _DL_BASE_H_
|
||||
#ifndef DL_BASE_H_
|
||||
#define DL_BASE_H_
|
||||
|
||||
#define DL_LEAK_HUNTING 0
|
||||
|
||||
|
@ -1309,5 +1309,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_BASE_H_ */
|
||||
#endif /* DL_BASE_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_BOUND_RELATION_H_
|
||||
#define _DL_BOUND_RELATION_H_
|
||||
#ifndef DL_BOUND_RELATION_H_
|
||||
#define DL_BOUND_RELATION_H_
|
||||
|
||||
#include "dl_context.h"
|
||||
#include "dl_relation_manager.h"
|
||||
|
|
|
@ -18,8 +18,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _DL_CHECK_TABLE_H_
|
||||
#define _DL_CHECK_TABLE_H_
|
||||
#ifndef DL_CHECK_TABLE_H_
|
||||
#define DL_CHECK_TABLE_H_
|
||||
|
||||
#include "dl_base.h"
|
||||
#include "dl_decl_plugin.h"
|
||||
|
@ -132,4 +132,4 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_CHECK_TABLE_H_ */
|
||||
#endif /* DL_CHECK_TABLE_H_ */
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_COMPILER_H_
|
||||
#define _DL_COMPILER_H_
|
||||
#ifndef DL_COMPILER_H_
|
||||
#define DL_COMPILER_H_
|
||||
|
||||
#include<iostream>
|
||||
#include<list>
|
||||
|
@ -299,5 +299,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_COMPILER_H_ */
|
||||
#endif /* DL_COMPILER_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_EXTERNAL_RELATION_H_
|
||||
#define _DL_EXTERNAL_RELATION_H_
|
||||
#ifndef DL_EXTERNAL_RELATION_H_
|
||||
#define DL_EXTERNAL_RELATION_H_
|
||||
|
||||
#include "dl_base.h"
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_FINITE_PRODUCT_RELATION_H_
|
||||
#define _DL_FINITE_PRODUCT_RELATION_H_
|
||||
#ifndef DL_FINITE_PRODUCT_RELATION_H_
|
||||
#define DL_FINITE_PRODUCT_RELATION_H_
|
||||
|
||||
|
||||
#include "dl_base.h"
|
||||
|
@ -362,5 +362,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_FINITE_PRODUCT_RELATION_H_ */
|
||||
#endif /* DL_FINITE_PRODUCT_RELATION_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_INSTRUCTION_H_
|
||||
#define _DL_INSTRUCTION_H_
|
||||
#ifndef DL_INSTRUCTION_H_
|
||||
#define DL_INSTRUCTION_H_
|
||||
|
||||
#include<iostream>
|
||||
#include<string>
|
||||
|
@ -368,5 +368,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_INSTRUCTION_H_ */
|
||||
#endif /* DL_INSTRUCTION_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_INTERVAL_RELATION_H_
|
||||
#define _DL_INTERVAL_RELATION_H_
|
||||
#ifndef DL_INTERVAL_RELATION_H_
|
||||
#define DL_INTERVAL_RELATION_H_
|
||||
|
||||
|
||||
#include "dl_context.h"
|
||||
|
|
|
@ -18,8 +18,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _DL_LAZY_TABLE_H_
|
||||
#define _DL_LAZY_TABLE_H_
|
||||
#ifndef DL_LAZY_TABLE_H_
|
||||
#define DL_LAZY_TABLE_H_
|
||||
|
||||
#include "dl_base.h"
|
||||
#include "ref.h"
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _DL_MK_EXPLANATIONS_H_
|
||||
#define _DL_MK_EXPLANATIONS_H_
|
||||
#ifndef DL_MK_EXPLANATIONS_H_
|
||||
#define DL_MK_EXPLANATIONS_H_
|
||||
|
||||
#include "dl_context.h"
|
||||
#include "dl_rule_transformer.h"
|
||||
|
@ -82,5 +82,5 @@ namespace datalog {
|
|||
};
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_EXPLANATIONS_H_ */
|
||||
#endif /* DL_MK_EXPLANATIONS_H_ */
|
||||
|
||||
|
|
|
@ -18,8 +18,8 @@ Revision History:
|
|||
--*/
|
||||
|
||||
|
||||
#ifndef _DL_MK_PARTIAL_EQUIVALENCE_TRANSFORMER_H_
|
||||
#define _DL_MK_PARTIAL_EQUIVALENCE_TRANSFORMER_H_
|
||||
#ifndef DL_MK_PARTIAL_EQUIVALENCE_TRANSFORMER_H_
|
||||
#define DL_MK_PARTIAL_EQUIVALENCE_TRANSFORMER_H_
|
||||
|
||||
#include "dl_context.h"
|
||||
#include "dl_rule_transformer.h"
|
||||
|
@ -45,6 +45,6 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_PARTIAL_EQUIV_TRANSFORMER_H_ */
|
||||
#endif /* DL_MK_PARTIAL_EQUIV_TRANSFORMER_H_ */
|
||||
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_SIMILARITY_COMPRESSOR_H_
|
||||
#define _DL_MK_SIMILARITY_COMPRESSOR_H_
|
||||
#ifndef DL_MK_SIMILARITY_COMPRESSOR_H_
|
||||
#define DL_MK_SIMILARITY_COMPRESSOR_H_
|
||||
|
||||
#include<utility>
|
||||
|
||||
|
@ -74,5 +74,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_SIMILARITY_COMPRESSOR_H_ */
|
||||
#endif /* DL_MK_SIMILARITY_COMPRESSOR_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_SIMPLE_JOINS_H_
|
||||
#define _DL_MK_SIMPLE_JOINS_H_
|
||||
#ifndef DL_MK_SIMPLE_JOINS_H_
|
||||
#define DL_MK_SIMPLE_JOINS_H_
|
||||
|
||||
#include"map.h"
|
||||
#include"obj_pair_hashtable.h"
|
||||
|
@ -59,5 +59,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_SIMPLE_JOINS_H_ */
|
||||
#endif /* DL_MK_SIMPLE_JOINS_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_PRODUCT_RELATION_H_
|
||||
#define _DL_PRODUCT_RELATION_H_
|
||||
#ifndef DL_PRODUCT_RELATION_H_
|
||||
#define DL_PRODUCT_RELATION_H_
|
||||
|
||||
|
||||
#include "dl_context.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_RELATION_MANAGER_H_
|
||||
#define _DL_RELATION_MANAGER_H_
|
||||
#ifndef DL_RELATION_MANAGER_H_
|
||||
#define DL_RELATION_MANAGER_H_
|
||||
|
||||
|
||||
#include"map.h"
|
||||
|
@ -706,5 +706,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_RELATION_MANAGER_H_ */
|
||||
#endif /* DL_RELATION_MANAGER_H_ */
|
||||
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _DL_SIEVE_RELATION_H_
|
||||
#define _DL_SIEVE_RELATION_H_
|
||||
#ifndef DL_SIEVE_RELATION_H_
|
||||
#define DL_SIEVE_RELATION_H_
|
||||
|
||||
#include "dl_context.h"
|
||||
#include "dl_relation_manager.h"
|
||||
|
@ -194,5 +194,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_SIEVE_RELATION_H_ */
|
||||
#endif /* DL_SIEVE_RELATION_H_ */
|
||||
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _DL_SPARSE_TABLE_H_
|
||||
#define _DL_SPARSE_TABLE_H_
|
||||
#ifndef DL_SPARSE_TABLE_H_
|
||||
#define DL_SPARSE_TABLE_H_
|
||||
|
||||
#include<iostream>
|
||||
#include<list>
|
||||
|
@ -495,4 +495,4 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_SPARSE_TABLE_H_ */
|
||||
#endif /* DL_SPARSE_TABLE_H_ */
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_TABLE_H_
|
||||
#define _DL_TABLE_H_
|
||||
#ifndef DL_TABLE_H_
|
||||
#define DL_TABLE_H_
|
||||
|
||||
#include<iostream>
|
||||
#include<list>
|
||||
|
@ -261,5 +261,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_TABLE_H_ */
|
||||
#endif /* DL_TABLE_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_TABLE_PLUGIN_H_
|
||||
#define _DL_TABLE_PLUGIN_H_
|
||||
#ifndef DL_TABLE_PLUGIN_H_
|
||||
#define DL_TABLE_PLUGIN_H_
|
||||
|
||||
#include"ast.h"
|
||||
#include"map.h"
|
||||
|
@ -189,5 +189,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_TABLE_PLUGIN_H_ */
|
||||
#endif /* DL_TABLE_PLUGIN_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_TABLE_RELATION_H_
|
||||
#define _DL_TABLE_RELATION_H_
|
||||
#ifndef DL_TABLE_RELATION_H_
|
||||
#define DL_TABLE_RELATION_H_
|
||||
|
||||
|
||||
#include "dl_base.h"
|
||||
|
@ -129,5 +129,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_TABLE_RELATION_H_ */
|
||||
#endif /* DL_TABLE_RELATION_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_VECTOR_RELATION_H_
|
||||
#define _DL_VECTOR_RELATION_H_
|
||||
#ifndef DL_VECTOR_RELATION_H_
|
||||
#define DL_VECTOR_RELATION_H_
|
||||
|
||||
#include "ast_pp.h"
|
||||
#include "dl_context.h"
|
||||
|
|
|
@ -20,8 +20,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _DOC_H_
|
||||
#define _DOC_H_
|
||||
#ifndef DOC_H_
|
||||
#define DOC_H_
|
||||
|
||||
#include "tbv.h"
|
||||
#include "union_find.h"
|
||||
|
@ -389,5 +389,5 @@ public:
|
|||
operator bool() const { return d != 0; }
|
||||
};
|
||||
|
||||
#endif /* _DOC_H_ */
|
||||
#endif /* DOC_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _KARR_RELATION_H_
|
||||
#define _KARR_RELATION_H_
|
||||
#ifndef KARR_RELATION_H_
|
||||
#define KARR_RELATION_H_
|
||||
|
||||
#include"dl_mk_karr_invariants.h"
|
||||
#include"dl_relation_manager.h"
|
||||
|
@ -84,5 +84,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_KARR_INVARIANTS_H_ */
|
||||
#endif /* DL_MK_KARR_INVARIANTS_H_ */
|
||||
|
||||
|
|
|
@ -18,8 +18,8 @@ Revision History:
|
|||
Extracted from dl_context
|
||||
|
||||
--*/
|
||||
#ifndef _REL_CONTEXT_H_
|
||||
#define _REL_CONTEXT_H_
|
||||
#ifndef REL_CONTEXT_H_
|
||||
#define REL_CONTEXT_H_
|
||||
#include "ast.h"
|
||||
#include "dl_relation_manager.h"
|
||||
#include "dl_instruction.h"
|
||||
|
@ -130,4 +130,4 @@ namespace datalog {
|
|||
};
|
||||
};
|
||||
|
||||
#endif /* _REL_CONTEXT_H_ */
|
||||
#endif /* REL_CONTEXT_H_ */
|
||||
|
|
|
@ -18,8 +18,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _TBV_H_
|
||||
#define _TBV_H_
|
||||
#ifndef TBV_H_
|
||||
#define TBV_H_
|
||||
|
||||
#include "fixed_bit_vector.h"
|
||||
#include "rational.h"
|
||||
|
@ -147,4 +147,4 @@ public:
|
|||
};
|
||||
|
||||
|
||||
#endif /* _TBV_H_ */
|
||||
#endif /* TBV_H_ */
|
||||
|
|
|
@ -19,8 +19,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _UDOC_RELATION_H_
|
||||
#define _UDOC_RELATION_H_
|
||||
#ifndef UDOC_RELATION_H_
|
||||
#define UDOC_RELATION_H_
|
||||
|
||||
#include "doc.h"
|
||||
#include "dl_base.h"
|
||||
|
@ -149,5 +149,5 @@ namespace datalog {
|
|||
};
|
||||
};
|
||||
|
||||
#endif /* _UDOC_RELATION_H_ */
|
||||
#endif /* UDOC_RELATION_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _TAB_CONTEXT_H_
|
||||
#define _TAB_CONTEXT_H_
|
||||
#ifndef TAB_CONTEXT_H_
|
||||
#define TAB_CONTEXT_H_
|
||||
|
||||
#include "ast.h"
|
||||
#include "lbool.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_ARRAY_BLAST_H_
|
||||
#define _DL_MK_ARRAY_BLAST_H_
|
||||
#ifndef DL_MK_ARRAY_BLAST_H_
|
||||
#define DL_MK_ARRAY_BLAST_H_
|
||||
|
||||
#include"dl_context.h"
|
||||
#include"dl_rule_set.h"
|
||||
|
@ -74,5 +74,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_ARRAY_BLAST_H_ */
|
||||
#endif /* DL_MK_ARRAY_BLAST_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_BACKWARDS_H_
|
||||
#define _DL_MK_BACKWARDS_H_
|
||||
#ifndef DL_MK_BACKWARDS_H_
|
||||
#define DL_MK_BACKWARDS_H_
|
||||
|
||||
#include"dl_rule_transformer.h"
|
||||
|
||||
|
@ -34,5 +34,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_BACKWARDS_H_ */
|
||||
#endif /* DL_MK_BACKWARDS_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_BIT_BLAST_H_
|
||||
#define _DL_MK_BIT_BLAST_H_
|
||||
#ifndef DL_MK_BIT_BLAST_H_
|
||||
#define DL_MK_BIT_BLAST_H_
|
||||
|
||||
#include"dl_rule_transformer.h"
|
||||
|
||||
|
@ -34,5 +34,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_BIT_BLAST_H_ */
|
||||
#endif /* DL_MK_BIT_BLAST_H_ */
|
||||
|
||||
|
|
|
@ -17,8 +17,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_COALESCE_H_
|
||||
#define _DL_MK_COALESCE_H_
|
||||
#ifndef DL_MK_COALESCE_H_
|
||||
#define DL_MK_COALESCE_H_
|
||||
|
||||
#include"dl_context.h"
|
||||
#include"dl_rule_set.h"
|
||||
|
@ -57,5 +57,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_COALESCE_H_ */
|
||||
#endif /* DL_MK_COALESCE_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_DIFFERENT_SYMBOLIC_H_
|
||||
#define _DL_MK_DIFFERENT_SYMBOLIC_H_
|
||||
#ifndef DL_MK_DIFFERENT_SYMBOLIC_H_
|
||||
#define DL_MK_DIFFERENT_SYMBOLIC_H_
|
||||
|
||||
#include"dl_rule_transformer.h"
|
||||
|
||||
|
@ -34,5 +34,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_DIFFERENT_SYMBOLIC_H_ */
|
||||
#endif /* DL_MK_DIFFERENT_SYMBOLIC_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_FILTER_RULES_H_
|
||||
#define _DL_MK_FILTER_RULES_H_
|
||||
#ifndef DL_MK_FILTER_RULES_H_
|
||||
#define DL_MK_FILTER_RULES_H_
|
||||
|
||||
#include"map.h"
|
||||
|
||||
|
@ -83,5 +83,5 @@ namespace datalog {
|
|||
};
|
||||
|
||||
|
||||
#endif /* _DL_MK_FILTER_RULES_H_ */
|
||||
#endif /* DL_MK_FILTER_RULES_H_ */
|
||||
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _DL_MK_INTERP_TAIL_SIMPLIFIER_H_
|
||||
#define _DL_MK_INTERP_TAIL_SIMPLIFIER_H_
|
||||
#ifndef DL_MK_INTERP_TAIL_SIMPLIFIER_H_
|
||||
#define DL_MK_INTERP_TAIL_SIMPLIFIER_H_
|
||||
|
||||
#include "dl_context.h"
|
||||
#include "dl_rule_transformer.h"
|
||||
|
@ -105,5 +105,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_INTERP_TAIL_SIMPLIFIER_H_ */
|
||||
#endif /* DL_MK_INTERP_TAIL_SIMPLIFIER_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_KARR_INVARIANTS_H_
|
||||
#define _DL_MK_KARR_INVARIANTS_H_
|
||||
#ifndef DL_MK_KARR_INVARIANTS_H_
|
||||
#define DL_MK_KARR_INVARIANTS_H_
|
||||
|
||||
#include"dl_context.h"
|
||||
#include"dl_rule_set.h"
|
||||
|
@ -77,5 +77,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_KARR_INVARIANTS_H_ */
|
||||
#endif /* DL_MK_KARR_INVARIANTS_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_LOOP_COUNTER_H_
|
||||
#define _DL_MK_LOOP_COUNTER_H_
|
||||
#ifndef DL_MK_LOOP_COUNTER_H_
|
||||
#define DL_MK_LOOP_COUNTER_H_
|
||||
|
||||
#include"dl_rule_transformer.h"
|
||||
#include"arith_decl_plugin.h"
|
||||
|
@ -47,5 +47,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_LOOP_COUNTER_H_ */
|
||||
#endif /* DL_MK_LOOP_COUNTER_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_MAGIC_SETS_H_
|
||||
#define _DL_MK_MAGIC_SETS_H_
|
||||
#ifndef DL_MK_MAGIC_SETS_H_
|
||||
#define DL_MK_MAGIC_SETS_H_
|
||||
|
||||
#include<utility>
|
||||
|
||||
|
@ -131,5 +131,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_MAGIC_SETS_H_ */
|
||||
#endif /* DL_MK_MAGIC_SETS_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_MAGIC_SYMBOLIC_H_
|
||||
#define _DL_MK_MAGIC_SYMBOLIC_H_
|
||||
#ifndef DL_MK_MAGIC_SYMBOLIC_H_
|
||||
#define DL_MK_MAGIC_SYMBOLIC_H_
|
||||
|
||||
#include"dl_rule_transformer.h"
|
||||
|
||||
|
@ -36,5 +36,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_MAGIC_SYMBOLIC_H_ */
|
||||
#endif /* DL_MK_MAGIC_SYMBOLIC_H_ */
|
||||
|
||||
|
|
|
@ -22,8 +22,8 @@ Revision History:
|
|||
"On Solving Universally Quantified Horn Clauses"
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_QUANTIFIER_ABSTRACTION_H_
|
||||
#define _DL_MK_QUANTIFIER_ABSTRACTION_H_
|
||||
#ifndef DL_MK_QUANTIFIER_ABSTRACTION_H_
|
||||
#define DL_MK_QUANTIFIER_ABSTRACTION_H_
|
||||
|
||||
|
||||
#include"dl_rule_transformer.h"
|
||||
|
@ -60,5 +60,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_QUANTIFIER_ABSTRACTION_H_ */
|
||||
#endif /* DL_MK_QUANTIFIER_ABSTRACTION_H_ */
|
||||
|
||||
|
|
|
@ -22,8 +22,8 @@ Revision History:
|
|||
"On Solving Universally Quantified Horn Clauses"
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_QUANTIFIER_INSTANTIATION_H_
|
||||
#define _DL_MK_QUANTIFIER_INSTANTIATION_H_
|
||||
#ifndef DL_MK_QUANTIFIER_INSTANTIATION_H_
|
||||
#define DL_MK_QUANTIFIER_INSTANTIATION_H_
|
||||
|
||||
|
||||
#include "dl_rule_transformer.h"
|
||||
|
@ -70,5 +70,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_QUANTIFIER_INSTANTIATION_H_ */
|
||||
#endif /* DL_MK_QUANTIFIER_INSTANTIATION_H_ */
|
||||
|
||||
|
|
|
@ -17,8 +17,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _DL_MK_RULE_INLINER_H_
|
||||
#define _DL_MK_RULE_INLINER_H_
|
||||
#ifndef DL_MK_RULE_INLINER_H_
|
||||
#define DL_MK_RULE_INLINER_H_
|
||||
|
||||
#include "dl_context.h"
|
||||
#include "dl_rule_transformer.h"
|
||||
|
@ -201,5 +201,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_INTERP_TAIL_SIMPLIFIER_H_ */
|
||||
#endif /* DL_MK_INTERP_TAIL_SIMPLIFIER_H_ */
|
||||
|
||||
|
|
|
@ -18,8 +18,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_SCALE_H_
|
||||
#define _DL_MK_SCALE_H_
|
||||
#ifndef DL_MK_SCALE_H_
|
||||
#define DL_MK_SCALE_H_
|
||||
|
||||
#include"dl_rule_transformer.h"
|
||||
#include"arith_decl_plugin.h"
|
||||
|
@ -49,5 +49,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_SCALE_H_ */
|
||||
#endif /* DL_MK_SCALE_H_ */
|
||||
|
||||
|
|
|
@ -29,8 +29,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _DL_MK_SEPARAT_NEGATED_TAILS_H_
|
||||
#define _DL_MK_SEPARAT_NEGATED_TAILS_H_
|
||||
#ifndef DL_MK_SEPARAT_NEGATED_TAILS_H_
|
||||
#define DL_MK_SEPARAT_NEGATED_TAILS_H_
|
||||
|
||||
#include "dl_rule_transformer.h"
|
||||
#include "dl_context.h"
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_SLICE_H_
|
||||
#define _DL_MK_SLICE_H_
|
||||
#ifndef DL_MK_SLICE_H_
|
||||
#define DL_MK_SLICE_H_
|
||||
|
||||
#include"dl_context.h"
|
||||
#include"dl_rule_set.h"
|
||||
|
@ -111,5 +111,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_SLICE_H_ */
|
||||
#endif /* DL_MK_SLICE_H_ */
|
||||
|
||||
|
|
|
@ -18,8 +18,8 @@ Revision History:
|
|||
|
||||
--*/
|
||||
|
||||
#ifndef _DL_MK_SUBSUMPTION_CHECKER_H_
|
||||
#define _DL_MK_SUBSUMPTION_CHECKER_H_
|
||||
#ifndef DL_MK_SUBSUMPTION_CHECKER_H_
|
||||
#define DL_MK_SUBSUMPTION_CHECKER_H_
|
||||
|
||||
#include "dl_context.h"
|
||||
#include "dl_rule_transformer.h"
|
||||
|
@ -89,5 +89,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_SUBSUMPTION_CHECKER_H_ */
|
||||
#endif /* DL_MK_SUBSUMPTION_CHECKER_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_UNBOUND_COMPRESSOR_H_
|
||||
#define _DL_MK_UNBOUND_COMPRESSOR_H_
|
||||
#ifndef DL_MK_UNBOUND_COMPRESSOR_H_
|
||||
#define DL_MK_UNBOUND_COMPRESSOR_H_
|
||||
|
||||
#include<utility>
|
||||
|
||||
|
@ -88,5 +88,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_UNBOUND_COMPRESSOR_H_ */
|
||||
#endif /* DL_MK_UNBOUND_COMPRESSOR_H_ */
|
||||
|
||||
|
|
|
@ -16,8 +16,8 @@ Author:
|
|||
Revision History:
|
||||
|
||||
--*/
|
||||
#ifndef _DL_MK_UNFOLD_H_
|
||||
#define _DL_MK_UNFOLD_H_
|
||||
#ifndef DL_MK_UNFOLD_H_
|
||||
#define DL_MK_UNFOLD_H_
|
||||
|
||||
#include"dl_context.h"
|
||||
#include"dl_rule_set.h"
|
||||
|
@ -49,5 +49,5 @@ namespace datalog {
|
|||
|
||||
};
|
||||
|
||||
#endif /* _DL_MK_UNFOLD_H_ */
|
||||
#endif /* DL_MK_UNFOLD_H_ */
|
||||
|
||||
|
|
|
@ -18,8 +18,8 @@ Revision History:
|
|||
Extracted from dl_context
|
||||
|
||||
--*/
|
||||
#ifndef _DL_TRANSFORMS_H_
|
||||
#define _DL_TRANSFORMS_H_
|
||||
#ifndef DL_TRANSFORMS_H_
|
||||
#define DL_TRANSFORMS_H_
|
||||
|
||||
#include "dl_context.h"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue