9 lines
359 B
Bash
Executable File
9 lines
359 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Test script for uneven effort distribution with forced stops
|
|
echo "Testing uneven effort distribution with forced stops..."
|
|
cd "$(dirname "$0")/.."
|
|
|
|
# Run the bicycle planner with the test GPX file and forced stops
|
|
go run main.go -input tests/gpx/test_uneven_effort.gpx -days 12 -elevFactor 4.0 -multiStop="60.5,19.5:1;62.5,21.5:2;64.5,23.5:1"
|