tritoke / graph-algos-rs

Rust code for a basic graph and weighted graph type, as well as implementations of some common graph algorihms.
GNU Affero General Public License v3.0
0 stars 0 forks source link

Incorporate graph algorithms into the library. #1

Open tritoke opened 3 years ago

tritoke commented 3 years ago

The graph algorithms should be defined in a algorithms module which should then export the algorithms itself. This way they all use the same predecessor map type etc... As well as this the functionality can be better tested by writing tests for the algorithm implementations.

tritoke commented 3 years ago

Added doc-tests.