NREL / routee-compass

The RouteE-Compass energy-aware routing engine
https://nrel.github.io/routee-compass/
BSD 3-Clause "New" or "Revised" License
9 stars 4 forks source link

Rjf/a star weight factor #198

Closed robfitzgerald closed 2 months ago

robfitzgerald commented 2 months ago

This PR adds an optional argument for the a* algorithm. this allows the user to get dijkstra's algorithm:

[algorithm]
type = "a*"
weight_factor = 0.0

actually, config-wise, there is also a dijkstra algorithm now that is semantically equivalent:

[algorithm]
type = "dijkstra"

Closes #195.