Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions Custom VRP bakery delivery/router/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Nextmv route template
# Nextmv routing template

`route` is a modeling kit for vehicle routing problems (VRP). This template
`routing` is a modeling kit for vehicle routing problems (VRP). This template
will get you up to speed deploying your own solution.

The most important files created are `main.go` and an input file.
Expand All @@ -13,8 +13,10 @@ Before you start customizing run the command below to see if everything works as
expected:

```
nextmv sdk run main.go -- -hop.runner.input.path input_blog.json\
-hop.runner.output.path output_blog.json
nextmv run local main.go -- \
-hop.runner.input.path input.json \
-hop.solver.limits.duration 10s \
-hop.runner.output.path output.json
Comment on lines +16 to +19
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
nextmv run local main.go -- \
-hop.runner.input.path input.json \
-hop.solver.limits.duration 10s \
-hop.runner.output.path output.json
nextmv run local main.go -- \
-hop.runner.input.path input_blog.json \
-hop.solver.limits.duration 10s \
-hop.runner.output.path output_blog.json

```

A file `output_blog.json` should have been created with a VRP solution.
Expand Down