Skip to content
Snippets Groups Projects
Commit 13ab7c52 authored by Alex's avatar Alex
Browse files

fixed goto in supervisor running

parent acd512dd
Branches
No related tags found
No related merge requests found
......@@ -139,7 +139,6 @@ class Supervisor(val pb : DCOP, val algorithm: Algorithm, val initialContext: Co
}
if (trace) println(s"Supervisor -> self : ContinueAlgo")
self ! ContinueAlgo
goto(Deciding) using updatedStatus
}
else {// If the solving must be ended
......@@ -149,8 +148,8 @@ class Supervisor(val pb : DCOP, val algorithm: Algorithm, val initialContext: Co
}
if (trace) println(s"Supervisor -> self : StopAlgo")
self ! StopAlgo
goto(Deciding) using updatedStatus
}
goto(Deciding) using updatedStatus
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment