File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
visualization/motion_planning_tasks/src Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 33# unique id within task
44uint32 id
55
6- # successful solution IDs of this stage
6+ # successful solution IDs of this stage, sorted by increasing cost
77uint32 [] solved
88
99# (optional) failed solution IDs of this stage
Original file line number Diff line number Diff line change @@ -640,7 +640,8 @@ void RemoteSolutionModel::processSolutionIDs(const std::vector<uint32_t>& succes
640640}
641641
642642void RemoteSolutionModel::processSolutionIDs (const std::vector<uint32_t >& ids, bool successful) {
643- // ids are ordered by cost, insert them into data_ list sorted by id
643+ // Interface axiom: ids are sorted by cost
644+ // insert them into data_ list sorted by id
644645 double default_cost =
645646 successful ? std::numeric_limits<double >::quiet_NaN () : std::numeric_limits<double >::infinity ();
646647 uint32_t cost_rank = 0 ;
You can’t perform that action at this time.
0 commit comments