Skip to content

Commit

Permalink
Fixing error message
Browse files Browse the repository at this point in the history
  • Loading branch information
merschformann committed Feb 29, 2024
1 parent d84b981 commit 98e877c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions solution.go
Original file line number Diff line number Diff line change
Expand Up @@ -529,8 +529,8 @@ func (s *solutionImpl) addInitialSolution(m Model) error {
return fmt.Errorf(
"no feasible route from start to end found for vehicle %v"+
" due to constraint %v, no further stops to remove",
constraint,
solutionVehicle.ModelVehicle().ID())
solutionVehicle.ModelVehicle().ID(),
constraint)
}
}

Expand Down

0 comments on commit 98e877c

Please sign in to comment.