readme notes

master
Evan Hemsley 2019-10-23 22:34:13 -07:00
parent 9e8bc14a40
commit 0ccdf2768a
1 changed files with 7 additions and 1 deletions

View File

@ -14,4 +14,10 @@ A GC-friendly graph theory library for C# intended for use with games.
## Notes
`Graph` algorithms return lazy enumerators to avoid creating GC pressure. If you wish to hang on to the results of an evaluation, make sure to call `ToArray()` or `ToList()` on the IEnumerable.
`Graph` algorithms return lazy enumerators to avoid creating GC pressure. If you wish to hang on to the results of an evaluation, make sure to call `ToArray()` or `ToList()` on the IEnumerable.
### TODO
* Prim Minimum Spanning Tree
* Kruskal Minimum Spanning Tree
* Undirected Weighted Multigraph