All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
z3-z3-4.12.6.src.test.datalog_parser.cpp Maven / Gradle / Ivy
/*++
Copyright (c) 2015 Microsoft Corporation
--*/
#include "muz/fp/datalog_parser.h"
#include "ast/ast_pp.h"
#include "ast/arith_decl_plugin.h"
#include "muz/base/dl_context.h"
#include "muz/fp/dl_register_engine.h"
#include "smt/params/smt_params.h"
#include "ast/reg_decl_plugins.h"
#include
using namespace datalog;
static void dparse_string(char const* str) {
ast_manager m;
smt_params params;
reg_decl_plugins(m);
register_engine re;
context ctx(m, re, params);
parser* p = parser::create(ctx,m);
bool res = p->parse_string(str);
if (res) {
std::cout << "Parsed\n"<parse_file(file)) {
std::cout << "Failed to parse file\n";
}
dealloc(p);
}
void tst_datalog_parser() {
dparse_string("\nH :- C1(X,a,b), C2(Y,a,X) .");
dparse_string("N 128\n\nH :- C1(X,a,b), C2(Y,a,X) .");
dparse_string("N 128\nI 128\n\nC1(x : N, y : N, z : I)\nC2(x : N, y : N, z : N)\nH :- C1(X,a,b), C2(Y,a,X) .");
dparse_string("\nH :- C1(X,a,b), nC2(Y,a,X) .");
dparse_string("\nH :- C1(X,a,b),nC2(Y,a,X).");
dparse_string("\nH :- C1(X,a,b),\\\nC2(Y,a,X).");
dparse_string("\nH :- C1(X,a\\,\\b), C2(Y,a,X) .");
}
void tst_datalog_parser_file(char** argv, int argc, int & i) {
if (i + 1 < argc) {
dparse_file(argv[i+1]);
i++;
}
}