You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When debugging/working on instances, it's often useful to compare number of routes in solutions. Of course this info is only a jq '.routes | length' call away, but it would be nice to have it directly available as summary.routes. This would also be similar to how we report the unassigned tasks and their number in summary.
The text was updated successfully, but these errors were encountered:
@Yash-Goyal007 thanks for offering to help! This is mostly a matter of storing the value in the Summary object on the C++ side and adding it in the json output. You can re-use the same existing logic as with the current unassigned value.
adding a member for number of routes in Summary would happen here;
When debugging/working on instances, it's often useful to compare number of routes in solutions. Of course this info is only a
jq '.routes | length'
call away, but it would be nice to have it directly available assummary.routes
. This would also be similar to how we report the unassigned tasks and their number in summary.The text was updated successfully, but these errors were encountered: