File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,13 @@ This project implements and compares the performance of various graph algorithms
55- Breadth-First Search (BFS)
66- Bellman-Ford
77- Floyd-Warshall
8+ - Spectral Clustering
89
910All implementations are optimized for parallel execution to take advantage of multi-core processors.
1011
1112## Requirements
1213
13- - Go 1.16 or higher
14+ - Go 1.18 or higher
1415
1516## Installation
1617
@@ -34,7 +35,7 @@ Run the program using the following command:
3435```
3536
3637Where:
37- - ` <algorithm> ` is one of: ` bfs ` , ` bellman-ford ` , or ` floyd-warshall `
38+ - ` <algorithm> ` is one of: ` bfs ` , ` bellman-ford ` , ` spectral-clustering ` , or ` floyd-warshall `
3839- ` <graph_size> ` is the number of vertices in the graph
3940- ` <graph_density> ` is a float between 0 and 1 representing the density of edges in the graph
4041
@@ -51,6 +52,7 @@ Example:
5152 - ` bfs.go ` : BFS algorithm implementations
5253 - ` bellman_ford.go ` : Bellman-Ford algorithm implementations
5354 - ` floyd_warshall.go ` : Floyd-Warshall algorithm implementations
55+ - ` spectral_clustering.go ` : Spectral Clustering algorithm implementation
5456
5557## Performance
5658
You can’t perform that action at this time.
0 commit comments