anthem/include/anthem/StatementVisitor.h

164 lines
6.4 KiB
C
Raw Normal View History

2016-11-22 03:15:52 +01:00
#ifndef __ANTHEM__STATEMENT_VISITOR_H
#define __ANTHEM__STATEMENT_VISITOR_H
#include <anthem/AST.h>
#include <anthem/Body.h>
2016-11-23 03:29:26 +01:00
#include <anthem/Head.h>
#include <anthem/Term.h>
2016-11-22 03:15:52 +01:00
#include <anthem/Utils.h>
namespace anthem
{
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// StatementVisitor
//
////////////////////////////////////////////////////////////////////////////////////////////////////
struct StatementVisitor
{
std::experimental::optional<ast::Formula> visit(const Clingo::AST::Program &program, const Clingo::AST::Statement &statement, Context &context)
2016-11-22 03:15:52 +01:00
{
// TODO: refactor
context.logger.log(output::Priority::Debug, (std::string("[program] ") + program.name).c_str());
2016-11-22 03:15:52 +01:00
if (!program.parameters.empty())
throwErrorAtLocation(statement.location, "program parameters currently unsupported", context);
return std::experimental::nullopt;
2016-11-22 03:15:52 +01:00
}
std::experimental::optional<ast::Formula> visit(const Clingo::AST::Rule &rule, const Clingo::AST::Statement &, Context &context)
2016-11-22 03:15:52 +01:00
{
context.reset();
2016-11-23 03:29:26 +01:00
// Concatenate all head terms
rule.head.data.accept(HeadLiteralCollectFunctionTermsVisitor(), rule.head, context);
2016-11-22 03:15:52 +01:00
ast::And antecedent;
// Compute consequent
auto consequent = rule.head.data.accept(HeadLiteralTranslateToConsequentVisitor(), rule.head, context);
if (!consequent)
{
context.logger.log(output::Priority::Error, "could not translate formula consequent");
return std::experimental::nullopt;
}
2016-11-23 03:29:26 +01:00
// Print auxiliary variables replacing the head atoms arguments
2017-03-06 15:42:38 +01:00
for (auto i = context.headTerms.cbegin(); i != context.headTerms.cend(); i++)
{
2017-03-06 15:42:38 +01:00
const auto &headTerm = **i;
2016-11-23 03:29:26 +01:00
auto variableName = std::string(AuxiliaryHeadVariablePrefix) + std::to_string(i - context.headTerms.cbegin() + 1);
auto element = ast::Variable(std::move(variableName), ast::Variable::Type::Reserved);
auto set = translate(headTerm, context);
auto in = ast::In(std::move(element), std::move(set));
antecedent.arguments.emplace_back(std::move(in));
}
2017-03-06 15:42:38 +01:00
// Print translated body literals
for (auto i = rule.body.cbegin(); i != rule.body.cend(); i++)
{
2017-03-06 15:42:38 +01:00
const auto &bodyLiteral = *i;
2016-11-22 03:15:52 +01:00
2017-03-06 15:42:38 +01:00
if (bodyLiteral.sign != Clingo::AST::Sign::None)
throwErrorAtLocation(bodyLiteral.location, "only positive literals currently supported", context);
2016-11-22 03:15:52 +01:00
auto argument = bodyLiteral.data.accept(BodyBodyLiteralTranslateVisitor(), bodyLiteral, context);
if (!argument)
throwErrorAtLocation(bodyLiteral.location, "could not translate body literal", context);
2017-03-06 15:40:23 +01:00
antecedent.arguments.emplace_back(std::move(argument.value()));
2017-03-06 15:40:23 +01:00
}
// Handle choice rules
if (context.isChoiceRule)
antecedent.arguments.emplace_back(ast::deepCopy(consequent.value()));
2016-11-23 03:29:26 +01:00
// Use “true” as the consequent in case it is empty
if (antecedent.arguments.empty())
return ast::Formula::make<ast::Implies>(ast::Boolean(true), std::move(consequent.value()));
else if (antecedent.arguments.size() == 1)
return ast::Formula::make<ast::Implies>(std::move(antecedent.arguments[0]), std::move(consequent.value()));
2016-11-24 14:47:02 +01:00
return ast::Formula::make<ast::Implies>(std::move(antecedent), std::move(consequent.value()));
2016-11-22 03:15:52 +01:00
}
std::experimental::optional<ast::Formula> visit(const Clingo::AST::Definition &, const Clingo::AST::Statement &statement, Context &context)
2016-11-22 03:15:52 +01:00
{
throwErrorAtLocation(statement.location, "“definition” statements currently unsupported", context);
return std::experimental::nullopt;
2016-11-22 03:15:52 +01:00
}
std::experimental::optional<ast::Formula> visit(const Clingo::AST::ShowSignature &, const Clingo::AST::Statement &statement, Context &context)
2016-11-22 03:15:52 +01:00
{
throwErrorAtLocation(statement.location, "“show signature” statements currently unsupported", context);
return std::experimental::nullopt;
2016-11-22 03:15:52 +01:00
}
std::experimental::optional<ast::Formula> visit(const Clingo::AST::ShowTerm &, const Clingo::AST::Statement &statement, Context &context)
2016-11-22 03:15:52 +01:00
{
throwErrorAtLocation(statement.location, "“show term” statements currently unsupported", context);
return std::experimental::nullopt;
2016-11-22 03:15:52 +01:00
}
std::experimental::optional<ast::Formula> visit(const Clingo::AST::Minimize &, const Clingo::AST::Statement &statement, Context &context)
2016-11-22 03:15:52 +01:00
{
throwErrorAtLocation(statement.location, "“minimize” statements currently unsupported", context);
return std::experimental::nullopt;
2016-11-22 03:15:52 +01:00
}
std::experimental::optional<ast::Formula> visit(const Clingo::AST::Script &, const Clingo::AST::Statement &statement, Context &context)
2016-11-22 03:15:52 +01:00
{
throwErrorAtLocation(statement.location, "“script” statements currently unsupported", context);
return std::experimental::nullopt;
2016-11-22 03:15:52 +01:00
}
std::experimental::optional<ast::Formula> visit(const Clingo::AST::External &, const Clingo::AST::Statement &statement, Context &context)
2016-11-22 03:15:52 +01:00
{
throwErrorAtLocation(statement.location, "“external” statements currently unsupported", context);
return std::experimental::nullopt;
2016-11-22 03:15:52 +01:00
}
std::experimental::optional<ast::Formula> visit(const Clingo::AST::Edge &, const Clingo::AST::Statement &statement, Context &context)
2016-11-22 03:15:52 +01:00
{
throwErrorAtLocation(statement.location, "“edge” statements currently unsupported", context);
return std::experimental::nullopt;
2016-11-22 03:15:52 +01:00
}
std::experimental::optional<ast::Formula> visit(const Clingo::AST::Heuristic &, const Clingo::AST::Statement &statement, Context &context)
2016-11-22 03:15:52 +01:00
{
throwErrorAtLocation(statement.location, "“heuristic” statements currently unsupported", context);
return std::experimental::nullopt;
2016-11-22 03:15:52 +01:00
}
std::experimental::optional<ast::Formula> visit(const Clingo::AST::ProjectAtom &, const Clingo::AST::Statement &statement, Context &context)
2016-11-22 03:15:52 +01:00
{
throwErrorAtLocation(statement.location, "“project atom” statements currently unsupported", context);
return std::experimental::nullopt;
2016-11-22 03:15:52 +01:00
}
std::experimental::optional<ast::Formula> visit(const Clingo::AST::ProjectSignature &, const Clingo::AST::Statement &statement, Context &context)
2016-11-22 03:15:52 +01:00
{
throwErrorAtLocation(statement.location, "“project signature” statements currently unsupported", context);
return std::experimental::nullopt;
2016-11-22 03:15:52 +01:00
}
std::experimental::optional<ast::Formula> visit(const Clingo::AST::TheoryDefinition &, const Clingo::AST::Statement &statement, Context &context)
2016-11-22 03:15:52 +01:00
{
throwErrorAtLocation(statement.location, "“theory definition” statements currently unsupported", context);
return std::experimental::nullopt;
2016-11-22 03:15:52 +01:00
}
};
////////////////////////////////////////////////////////////////////////////////////////////////////
}
#endif