3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-02 13:27:01 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-07-04 15:56:30 -07:00
parent 10d0404175
commit d0e20e44ff
714 changed files with 714 additions and 2142 deletions

View file

@ -16,8 +16,7 @@ Author:
Revision History:
--*/
#ifndef DATALOG_PARSER_H_
#define DATALOG_PARSER_H_
#pragma once
#include "ast/ast.h"
#include "muz/base/dl_context.h"
@ -45,4 +44,3 @@ namespace datalog {
};
#endif

View file

@ -15,8 +15,7 @@ Author:
Notes:
--*/
#ifndef DL_CMDS_H_
#define DL_CMDS_H_
#pragma once
#include "ast/ast.h"
@ -34,4 +33,3 @@ void install_dl_cmds(cmd_context & ctx);
void install_dl_collect_cmds(dl_collected_cmds& collected_cmds, cmd_context& ctx);
#endif

View file

@ -16,8 +16,7 @@ Author:
Revision History:
--*/
#ifndef DL_REGISTER_ENGINE_H_
#define DL_REGISTER_ENGINE_H_
#pragma once
#include "muz/base/dl_context.h"
@ -33,4 +32,3 @@ namespace datalog {
}
#endif

View file

@ -16,8 +16,7 @@ Author:
Revision History:
--*/
#ifndef HORN_TACTIC_H_
#define HORN_TACTIC_H_
#pragma once
#include "util/params.h"
class ast_manager;
@ -32,4 +31,3 @@ tactic * mk_horn_simplify_tactic(ast_manager & m, params_ref const & p = params_
/*
ADD_TACTIC("horn-simplify", "simplify horn clauses.", "mk_horn_simplify_tactic(m, p)")
*/
#endif