Tagged Questions

QuickGraph is an open source generic graph library .NET. It handles both directed and undirected graphs and has algorithms for traversing and searching the graphs.

learn more… | top users | synonyms

3
votes
2answers
509 views

How to apply custom BidirectionalGraph from QuickGraph to GraphLayout from Graph#?

Whats wrong? using QuickGraph; using GraphSharp; public class State { public string Name { get; set; } public override string ToString() { ...
2
votes
2answers
261 views

Graphs and ASP.Net MVC

I have a graph which I would like to represent using an image on a website. The problem is generating this image dynamically based on the current state of the graph. I'm using ASP.Net MVC 3 with C#. ...
1
vote
1answer
68 views

How to set target vertex in QuickGraph Dijkstra or A*

I am using QuickGraph version 3.6 and I found function SetRootVertex, but no SetTagretVertex. I need this because I am searching short paths in huge graph and this would speed up program a lot. ...
1
vote
1answer
188 views

Render a gif or png when using QuickGraph (instead of a .dot file)

I m trying out quickgraph and when I remder like this: var graphviz = new GraphvizAlgorithm<string, SEdge<string>>(g); graphviz.ImageType = GraphvizImageType.Gif; var output = ...
1
vote
1answer
201 views

False Negative Unit Test with Pex, Contracts, and QuickGraph

everyone. I have a perplexing interaction between contracts, pex, and quickgraph and would be very grateful for advice from the more knowledgeable. I have boiled it down to a repro case where ...
1
vote
1answer
468 views

How to draw a directed graph with labels on edges using quickgraph and graph# libraries?

I'm trying to draw a directed graph with labels on edges. I'm using graph# (graphsharp) and quickgraph, and I saw an explanation in the forums about how to add labels (it is not supported by the ...
1
vote
1answer
547 views

Graphviz size/pagesize attribute seemingly ignored

How does one set the size of the output image in GraphViz via the DOT format? I'm using QuickGraph and this technique to render a GraphViz. As in the example below, I'm trying to set the maximum ...
1
vote
0answers
386 views

Quickgraph / Graphsharp nodes layout from left to right

I am using quickgraph/graphsharp library and try to get such a layout in which i could have all nodes aligned left to right with no overlapping... how it would be possible. Thanks, ...
1
vote
1answer
478 views

QuickGraph - is there algorithm for find all parents (up to root vertex's) of a set of vertex's

In QuickGraph - is there algorithm for find all parents (up to root vertex's) of a set of vertex's. In other words all vertex's which have somewhere under them (on the way to the leaf nodes) one or ...
1
vote
2answers
282 views

QuickGraph - How can I associate an Edge with a Class? (i.e. like you can with a Vertex)

Q1 - How can I associate an Edge with a Class? (i.e. like you can with a Vertex) In my case there are various types of edges I want to be able to model. So my real question I guess is how can I ...
1
vote
1answer
696 views

How to find all paths between two vertices using QuickGraph

How to find all paths between two vertices using QuickGraph? This is my custom graph: public class MyGraph : BidirectionalGraph<State, Event>() { } In samples only shortest path. Does ...
1
vote
1answer
653 views

How to create my network using QuickGraph (c#)

I have several nodes (undirected graph, bidirecional) ... Each two nodes have a distance... 1 - How can I create that network using QuickGraph? 2 - What is the right algorithm to calculate the best ...
1
vote
1answer
950 views

Difference Between QuickGraph from CodePlex and CodeProject

I'm wanting to use QuickGraph to draw some graphs in C# using GraphViz. I've had a look at the libraries available from CodePlex and CodeProject. They appear to be quite different. What are the major ...
1
vote
3answers
6k views

QuickGraph Dijkstra example

I have an AdjacencyGraph<string, Edge<string>> which I would like to run AlgorithmExtensions.ShortestPathsDijkstra on, but the QuickGraph documentation isn't the best. Does anyone have an ...
0
votes
1answer
103 views

How to render indent trees with QuickGraph in C#?

Is it possible to create and render simple indent trees in C# using QuickGraph library?
0
votes
1answer
168 views

QuickGraph, how to use extension method StronglyConnectedComponents

As part of my first experiments with C# (on Mono 2.6.7) , I am trying to use the StronglyConnectedComponents method from QuickGraph. Here is my code: using System; using QuickGraph; using ...
0
votes
0answers
78 views

What type of graph do I need?

I'm doing something similar to Quartz Composer . It consists of one-way connections from each node, with multiple inputs and multiple outputs. I'm unsure of whether I should be tying to the graph ...
0
votes
0answers
222 views

Routing to Self in QuickGraph Dijkstra

I noticed that when choosing the same node as start and end that Dijkstra always says "no path," even if there is explicitly a self-edge in the graph. I found this by running random tests (code ...
0
votes
1answer
118 views

caption/label for quickgraph edge

I have downloaded quickgraph from quickgraph.codeplex.com and just wondering to know how can we add caption (put text) right above than each edge.
0
votes
1answer
699 views

Getting shortest path between 2 nodes in quickgraph

i want to ask if there is any way to generate the shortest path from node A to node B without generating the shortest paths to all the other nodes (stop when node B is in the examined set) with A-star ...
0
votes
1answer
354 views

can QuickGraph support these requirements? (includes database persistence support)

Would QuickGraph be able to help me out with my requirements below? (a) want to model a graph of nodes and directional relationships between nodes - for example to model web pages/files linked under ...
0
votes
1answer
561 views

QuickGraph GraphvizRecord doesn't display in vertices

I'm trying to build a Graphviz graph containing record vertices using QuickGraph. So far, I have this: var algo = new GraphvizAlgorithm<Entity, EntityEdge>(this); algo.CommonVertexFormat.Shape ...