From baa928ddf6b8038289294d29b997ad4ab220287e Mon Sep 17 00:00:00 2001 From: Sergiu Ivanov Date: Sun, 10 Oct 2021 18:00:35 +0200 Subject: [PATCH] Don't say in the comments that graph properties are not supported. The README and the scribblings shout that sufficiently loudly. --- graph.rkt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/graph.rkt b/graph.rkt index da1d357..a79f8b9 100644 --- a/graph.rkt +++ b/graph.rkt @@ -110,8 +110,6 @@ (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) @@ -164,8 +162,6 @@ ;; 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)