graph.rkt: Say that graph properties are not supported.

This commit is contained in:
Sergiu Ivanov 2021-08-06 00:31:26 +02:00
parent 81ff2d5432
commit ce50034a11
1 changed files with 4 additions and 0 deletions

View File

@ -110,6 +110,8 @@
(define (matrix-graph? g)
(g:matrix-graph? (gg g)))
;; 3 Graph properties are not supported.
;; 4 Basic Graph Functions
;; 4.1 Breadth-first Search
(define (bfs g source)
@ -162,6 +164,8 @@
;; 2.3 Matrix Graphs
[matrix-graph? (-> Graph Boolean)]
;; 3 Graph properties are not supported.
;; 4 Basic Graph Functions
;; 4.1 Breadth-first Search
[bfs (-> Graph Any (Values (Mutable-HashTable Any Number)