Skip to content

Commit 7531754

Browse files
committed
2 parents 29661c3 + 9bcd65a commit 7531754

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,16 @@ This project is a simple implement a mathematical graph library that provides st
77
- generic data in node and edge
88
- supports weighted graph
99
- supports directed graph
10+
- minimal spanning tree Kruskal and Prim algorithm (for weighted graph)
1011
- shortest Dijkstra path algorithm (for weighted graph)
11-
- save graph system
12+
- node coloring
13+
- traversal
14+
- save graph system (save to file).
1215
- graph to serializable graph and conversely converter (easy to save)!
1316

1417
## Setup
1518
Compiling bin library is located in /bin folder. <br />
16-
Copy Graph and Priority Queue (.dll files) to your project. <br />
19+
Copy Graph and Priority Queue (.dll files) to your project (and GraphSave when you save graph to file).<br />
1720
NuGet package available soon.
1821

1922
## Simple code example
@@ -42,8 +45,9 @@ Console.WriteLine(edge01.Data); /* or */ Console.WriteLine(graph[0, 1].Data);
4245
graph.RemoveEdge(node0, graph[1]); // remove edge beetwen node 0 and 1
4346
graph.RemoveNode(graph[0]); /* or */ graph.RemoveNode(node0); // node 1 becomes to node 0
4447
```
45-
For more information, you must view [documentation](https://github.com/Guzik1/.Net_MathGraph/blob/master/docs/Graph/index.md). <br />
46-
Examples available here (TODO! make examples).
48+
For more information, you must view [Graph documentation](https://github.com/Guzik1/MathGraph_for_.Net/blob/master/docs/Graph/index.md). <br />
49+
When you save a graph, view [GraphSave documentation](https://github.com/Guzik1/MathGraph_for_.Net/blob/master/docs/GraphSave/GraphSave.md).<br />
50+
Examples available [here](https://github.com/Guzik1/MathGraph_for_.Net/tree/master/Examples).
4751

4852
## Built with
4953
- .Net Core 3.1

bin/GraphSave.dll

6 KB
Binary file not shown.

0 commit comments

Comments
 (0)