25 lines
599 B
C++
25 lines
599 B
C++
#ifndef __PDDL_PARSE__NORMALIZE_H
|
|
#define __PDDL_PARSE__NORMALIZE_H
|
|
|
|
#include <pddlparse/AST.h>
|
|
#include <pddlparse/Context.h>
|
|
#include <pddlparse/NormalizedAST.h>
|
|
#include <pddlparse/detail/normalization/Description.h>
|
|
|
|
namespace pddl
|
|
{
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Normalize
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
using detail::normalize;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
}
|
|
|
|
#endif
|