manual: Add types for the functions from Spanning Trees.
This commit is contained in:
parent
843bd5a8cb
commit
8499f4eee2
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue