10 lines
434 B
Bash
Executable File
10 lines
434 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Test script for the issue with uneven effort distribution
|
|
echo "Testing issue with uneven effort distribution..."
|
|
cd "$(dirname "$0")/.."
|
|
|
|
# Run the bicycle planner with the specified parameters and debug logging
|
|
# Filter the output to only show the relevant parts
|
|
go run main.go -input tests/gpx/very_long_route.gpx -days 12 -forestRadius 5 -resupplyRadius 5000 -multiStop "59.126854,11.380377:1;59.92199,10.744629:2"
|