Click here to Skip to main content
15,886,873 members
Articles / Programming Languages / C#

QuickGraph: A 100% C# Graph Library with Graphviz Support

Rate me:
Please Sign up or sign in to vote.
4.86/5 (78 votes)
23 Apr 2007Zlib9 min read 1.2M   32.5K   360  
A generic directed graph library with a Graphviz Web Control Bonus!
In this article, you will learn about a 100% C# Generic Graph Library, an attempt to port the Boost Graph Library (BGL) from C++ to C#.
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QuickGraph", "QuickGraph.csproj", "{5F42D0C5-A525-4891-9A5D-3D8BE4A21626}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QuickGraphTest", "..\QuickGraphTest\QuickGraphTest.csproj", "{FD4D1ABC-3E00-44A9-A391-5346F3068576}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfiguration) = preSolution
		Debug = Debug
		Release = Release
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{5F42D0C5-A525-4891-9A5D-3D8BE4A21626}.Debug.ActiveCfg = Debug|.NET
		{5F42D0C5-A525-4891-9A5D-3D8BE4A21626}.Debug.Build.0 = Debug|.NET
		{5F42D0C5-A525-4891-9A5D-3D8BE4A21626}.Release.ActiveCfg = Release|.NET
		{5F42D0C5-A525-4891-9A5D-3D8BE4A21626}.Release.Build.0 = Release|.NET
		{FD4D1ABC-3E00-44A9-A391-5346F3068576}.Debug.ActiveCfg = Debug|.NET
		{FD4D1ABC-3E00-44A9-A391-5346F3068576}.Debug.Build.0 = Debug|.NET
		{FD4D1ABC-3E00-44A9-A391-5346F3068576}.Release.ActiveCfg = Release|.NET
		{FD4D1ABC-3E00-44A9-A391-5346F3068576}.Release.Build.0 = Release|.NET
	EndGlobalSection
	GlobalSection(ExtensibilityGlobals) = postSolution
	EndGlobalSection
	GlobalSection(ExtensibilityAddIns) = postSolution
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The zlib/libpng License


Written By
Engineer
United States United States
Jonathan de Halleux is Civil Engineer in Applied Mathematics. He finished his PhD in 2004 in the rainy country of Belgium. After 2 years in the Common Language Runtime (i.e. .net), he is now working at Microsoft Research on Pex (http://research.microsoft.com/pex).

Comments and Discussions