manual: Add types for the functions from Spanning Trees.

This commit is contained in:
Sergiu Ivanov 2022-01-02 22:02:04 +01:00
parent 843bd5a8cb
commit 8499f4eee2
1 changed files with 6 additions and 0 deletions

View File

@ -165,6 +165,12 @@ Graph properties are not supported.
@defproc[(cc/bfs [g Graph]) (Listof (Listof Any))]{}
@defproc[(scc [g Graph]) (Listof (Listof Any))]{}
@subsection{Spanning Trees}
@defproc[(min-st-kruskal [g Graph]) (Listof (List Any Any))]{}
@defproc[(max-st-kruskal [g Graph]) (Listof (List Any Any))]{}
@defproc[(min-st-prim [g Graph] [source Any]) (Listof (List Any Any))]{}
@defproc[(max-st-prim [g Graph] [source Any]) (Listof (List Any Any))]{}
@section{License}
Like the generic graph library, this library is licensed under the Apache