Contributing¶
Adding a routing algorithm¶
- Implement a new class under
leopath/network_state/routing_algorithms/. - Register the algorithm in
leopath/network_state/routing_algorithms/routing_algorithm_factory.py. - Add a configuration example and tests.
Code style¶
- Format with
black(line length 100). - Run
flake8andpytestbefore opening a PR.