From 0ccdf2768a67822d96f20f4cb6c2dbafaa8cbd2a Mon Sep 17 00:00:00 2001 From: Evan Hemsley Date: Wed, 23 Oct 2019 22:34:13 -0700 Subject: [PATCH] readme notes --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index df157c5..ff6afcf 100644 --- a/README.md +++ b/README.md @@ -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. \ No newline at end of file +`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 \ No newline at end of file