Skip to content
Snippets Groups Projects
Commit 40b094b9 authored by Le Quang Anh's avatar Le Quang Anh
Browse files

[StatesPathFinder] Avoid loops in state sequence

Currently for most of the problems we look at, loops (an edge going into
the same state) are not useful. However, these loops appear in a lot of
state sequences considered by the algorithm and slow it down
significantly. Until we encounter a problem where loops are necessary to
accomplish the task, we should just ignore them.
parent 8e78a62a
No related branches found
No related tags found
No related merge requests found
...@@ -237,6 +237,10 @@ namespace hpp { ...@@ -237,6 +237,10 @@ namespace hpp {
return false; return false;
} }
static bool isLoopTransition (const graph::EdgePtr_t& transition) {
return transition->stateTo() == transition->stateFrom();
}
void StatesPathFinder::gatherGraphConstraints () void StatesPathFinder::gatherGraphConstraints ()
{ {
typedef graph::Edge Edge; typedef graph::Edge Edge;
...@@ -315,6 +319,9 @@ namespace hpp { ...@@ -315,6 +319,9 @@ namespace hpp {
// Avoid identical consecutive transition // Avoid identical consecutive transition
if (transition == parent.e) continue; if (transition == parent.e) continue;
// Avoid loop transitions
if (isLoopTransition(transition)) continue;
// Insert parent // Insert parent
d.queue1.push ( d.queue1.push (
d.addParent (_state, transition) d.addParent (_state, transition)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment