Let me introduce you to my latest CodePlex Project
GrapheNet
GrapheNet is a graph Library for .Net
Currently the dll is about 25Kb
Example
Download GrapheNet and use it in your projects.
GrapheNet
GrapheNet is a graph Library for .Net
Currently the dll is about 25Kb
Example
Imports GrapheNet.Graph
Module Module1
Sub Main()
Dim a As New Graph(Of String, Integer)(directed:=True,
allowsReflexivity:=False)
a.AddNode("A")
a.AddNode("B")
a.AddNode("C")
a.AddNode("D")
a.AddNode("E")
a.AddEdge("A", "E", 2)
a.AddEdge("E", "B", 3)
Dim q = a.GetPaths("A", "B")
Console.WriteLine(q(0))
End Sub
End Module
Download GrapheNet and use it in your projects.
9 Comments On This Entry
Page 1 of 1
atraub
29 April 2011 - 12:11 PM
Obviously, he wants a screenshot of the source code from the library. Jeeze AdamSpeight2008, I thought you were good at this!
Munawwar
29 April 2011 - 01:14 PM
I think this project could go a long way, if you'd start implementing graph algorithms. It would be awesome if we could make something for .NET as the boost graph library did for C++.
Page 1 of 1
|
|



9 Comments








|