Skip to content

Commit

Permalink
Merge pull request #89 from nextmv-io/merschformann/upgrade-nextroute
Browse files Browse the repository at this point in the history
Upgrades nextroute to v1.11.0
  • Loading branch information
merschformann authored Dec 24, 2024
2 parents 8c8dcf0 + 2b601eb commit 2b671d6
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 8 deletions.
9 changes: 8 additions & 1 deletion .nextmv/golden/go-nextroute/inputs/input.json.golden
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
"durations": false,
"initial_solution": false,
"stop_duration_multipliers": false
}
},
"maximum_time_horizon": 15552000
},
"validate": {
"disable": {
Expand All @@ -66,6 +67,12 @@
"duration": 3000000000,
"iterations": 50,
"parallel_runs": 1,
"plateau": {
"absolute_threshold": -1,
"duration": 0,
"iterations": 0,
"relative_threshold": 0
},
"run_deterministically": true,
"start_solutions": 1
}
Expand Down
6 changes: 6 additions & 0 deletions .nextmv/golden/python-nextroute/inputs/input.json.golden
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"model_objectives_earlyarrivalpenalty": 1,
"model_objectives_latearrivalpenalty": 1,
"model_objectives_minstops": 1,
"model_objectives_stopbalance": 0,
"model_objectives_travelduration": 0,
"model_objectives_unplannedpenalty": 1,
"model_objectives_vehicleactivationpenalty": 1,
Expand All @@ -32,6 +33,7 @@
"model_properties_disable_durations": false,
"model_properties_disable_initialsolution": false,
"model_properties_disable_stopdurationmultipliers": false,
"model_properties_maximumtimehorizon": 15552000,
"model_validate_disable_resources": false,
"model_validate_disable_starttime": false,
"model_validate_enable_matrix": false,
Expand All @@ -40,6 +42,10 @@
"solve_duration": 3,
"solve_iterations": 50,
"solve_parallelruns": 1,
"solve_plateau_absolutethreshold": -1,
"solve_plateau_duration": 0,
"solve_plateau_iterations": 0,
"solve_plateau_relativethreshold": 0,
"solve_rundeterministically": true,
"solve_startsolutions": 1
},
Expand Down
4 changes: 2 additions & 2 deletions go-nextroute/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ module example.com/your_project/go-nextroute
go 1.22

require (
github.com/nextmv-io/nextroute v1.10.1
github.com/nextmv-io/sdk v1.8.1
github.com/nextmv-io/nextroute v1.11.0
github.com/nextmv-io/sdk v1.8.3-0.20241219091227-002f36a342d6
)

require (
Expand Down
8 changes: 4 additions & 4 deletions go-nextroute/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -302,10 +302,10 @@ github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lN
github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
github.com/nextmv-io/nextroute v1.10.1 h1:x8c//5XHplPxw4bOlPNVmfoSdcgwvMqb44yAIoz/DXU=
github.com/nextmv-io/nextroute v1.10.1/go.mod h1:Y5VkkPwW2TyHopnrcBpgYvyUbPH19KZgFiX+iNQ1Y7U=
github.com/nextmv-io/sdk v1.8.1 h1:CYhhDtd4ZeFYfHXSinVQpvH4mIPJHOqtQGUaSwBfpp8=
github.com/nextmv-io/sdk v1.8.1/go.mod h1:Y48XLPcIOOxRgO86ICNpqGrH2N5+dd1TDNvef/FD2Kc=
github.com/nextmv-io/nextroute v1.11.0 h1:8+wRIq1vrSck8H77eiigbP6FGR5p93GB5kD6Qwi8EHo=
github.com/nextmv-io/nextroute v1.11.0/go.mod h1:ZPVGnU48OehlxfPb4Aw5XW2wPGrIBSnukz1Pkgf3kUs=
github.com/nextmv-io/sdk v1.8.3-0.20241219091227-002f36a342d6 h1:icnvtf2R9Zg9Qs+SyVbQ6HEZ5fPj6A+7ywxOT2lrWus=
github.com/nextmv-io/sdk v1.8.3-0.20241219091227-002f36a342d6/go.mod h1:Y48XLPcIOOxRgO86ICNpqGrH2N5+dd1TDNvef/FD2Kc=
github.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYrxe9dPLANfrWvHYVTgc=
github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=
github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=
Expand Down
2 changes: 1 addition & 1 deletion python-nextroute/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
nextroute==1.10.1
nextroute==1.11.0
nextmv==0.14.2

0 comments on commit 2b671d6

Please sign in to comment.