Normalizing problems’ goal descriptions.
This commit is contained in:
parent
5f406e6b18
commit
23e851ccef
@ -45,6 +45,8 @@ class Problem
|
|||||||
|
|
||||||
void checkConsistency();
|
void checkConsistency();
|
||||||
|
|
||||||
|
void normalize();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void parseRequirementSection();
|
void parseRequirementSection();
|
||||||
void computeDerivedRequirements();
|
void computeDerivedRequirements();
|
||||||
|
@ -207,6 +207,9 @@ void Description::checkConsistency()
|
|||||||
void Description::normalize()
|
void Description::normalize()
|
||||||
{
|
{
|
||||||
m_domain->normalize();
|
m_domain->normalize();
|
||||||
|
|
||||||
|
if (m_problem)
|
||||||
|
m_problem->normalize();
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -395,5 +395,16 @@ void Problem::checkConsistency()
|
|||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
void Problem::normalize()
|
||||||
|
{
|
||||||
|
BOOST_ASSERT(m_goal);
|
||||||
|
|
||||||
|
// TODO: normalize objects and initial state
|
||||||
|
|
||||||
|
m_goal->normalize();
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user