From 2fb497a5ad25c091d849d6f7fded57d65c1ccda2 Mon Sep 17 00:00:00 2001 From: Haley Eshagh <78370926+heshagh@users.noreply.github.com> Date: Tue, 4 Oct 2022 14:30:04 -0700 Subject: [PATCH] Updated ReadMe for custom VRP blog demo files Changes: * Updating `router` to `routing` * Updating the `run local` commands with duration limit and `sdk` removal. --- Custom VRP bakery delivery/router/README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Custom VRP bakery delivery/router/README.md b/Custom VRP bakery delivery/router/README.md index eb00728..9dfc02f 100644 --- a/Custom VRP bakery delivery/router/README.md +++ b/Custom VRP bakery delivery/router/README.md @@ -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. @@ -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 ``` A file `output_blog.json` should have been created with a VRP solution.