From 4581f1fee8225ad454a496d96c2de0701e2152e9 Mon Sep 17 00:00:00 2001 From: Roy Stogner Date: Wed, 1 Dec 2021 17:38:53 -0600 Subject: [PATCH] Consistent executable path in README.md These commands run (from the source directory; would commands as run from the build directory be clearer?) for me as-is (after the testbed executable has been built) now. --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 478f818..b3af367 100644 --- a/README.md +++ b/README.md @@ -72,19 +72,19 @@ Running the Examples Load data points from a file: ``` -p2t +build/testbed/p2t ``` Random distribution of points inside a constrained box: ``` -p2t random +build/testbed/p2t random ``` Examples: ``` -./build/p2t testbed/data/dude.dat 300 500 2 -./build/p2t testbed/data/nazca_monkey.dat 0 0 9 +build/testbed/p2t testbed/data/dude.dat 300 500 2 +build/testbed/p2t testbed/data/nazca_monkey.dat 0 0 9 -./build/p2t random 10 100 5.0 -./build/p2t random 1000 20000 0.025 +build/testbed/p2t random 10 100 5.0 +build/testbed/p2t random 1000 20000 0.025 ``` References