views:

202

answers:

1

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 anybody know how to do it?

+1  A: 

I'm trying to solve the same thing - you might want to take a look at this thread on the QuickGraph discussion boards:

http://quickgraph.codeplex.com/Thread/View.aspx?ThreadId=39479

Its a bit long but I think the jist of it is that you need to use Ranked shortest path

Kragen
alreadythanx a lot
Evl-ntnt