Started implementing reduction, added support for “imply” expressions.

This commit is contained in:
2017-06-24 16:03:32 +02:00
parent d5dd8e849f
commit 7ae2734e9f
3 changed files with 125 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
#ifndef __PDDL_PARSE__DETAIL__NORMALIZATION__REDUCTION_H
#define __PDDL_PARSE__DETAIL__NORMALIZATION__REDUCTION_H
#include <pddlparse/ASTForward.h>
#include <pddlparse/Context.h>
#include <pddlparse/NormalizedASTForward.h>
namespace pddl
{
namespace detail
{
////////////////////////////////////////////////////////////////////////////////////////////////////
//
// Reduction
//
////////////////////////////////////////////////////////////////////////////////////////////////////
void reduce(ast::Precondition &precondition);
////////////////////////////////////////////////////////////////////////////////////////////////////
}
}
#endif