oldrev / Sandwych.QuickGraph

Sandwych.QuickGraph is a port of the awesome QuickGraph to .NET Standard, it provides generic directed/undirected graph datastructures and algorithms for .NET.
Microsoft Public License
27 stars 6 forks source link

[Question] How is this project different from https://github.com/YaccConstructor/Quickgraph.? #5

Open AceTheWiz opened 5 years ago

KeRNeLith commented 4 years ago

Hello, I made a fork of the YaccConstructor.QuickGraph repository that is available here.

The purpose of my fork was to clean the library and make it using modern C# development pipelines to be usable in recent build processes. As an example, using my new packages avoid problems of mscorlib not found when using the Microsoft.NET.Sdk.WindowsDesktop of new csproj format. So I took as basis the quoted repository and made a lot of clean, unit tests and bug fixes.

I only focused for now on the core library that I split in 2 packages (QuikGraph and QuikGraph.Serialization).

The plan for the future is to fully clean the original library to provide it as several packages representing independant sub modules of the library.

AceTheWiz commented 4 years ago

Thanks for the reply.