From ce50034a119903f7720f0406b299efe191e4a6dc Mon Sep 17 00:00:00 2001 From: Sergiu Ivanov Date: Fri, 6 Aug 2021 00:31:26 +0200 Subject: [PATCH] graph.rkt: Say that graph properties are not supported. --- graph.rkt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/graph.rkt b/graph.rkt index a79f8b9..da1d357 100644 --- a/graph.rkt +++ b/graph.rkt @@ -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)