(svn r25356) -Add: Multi-Commodity-Flow solver for link graph

This commit is contained in:
fonsinchen
2013-06-09 13:00:41 +00:00
parent 6a46b5262f
commit 9824d53d6a
9 changed files with 682 additions and 1 deletions

View File

@@ -13,6 +13,7 @@
#include "linkgraphschedule.h"
#include "init.h"
#include "demands.h"
#include "mcf.h"
/**
* Spawn a thread if possible and run the link graph job in the thread. If
@@ -130,6 +131,8 @@ LinkGraphSchedule::LinkGraphSchedule()
{
this->handlers[0] = new InitHandler;
this->handlers[1] = new DemandHandler;
this->handlers[2] = new MCFHandler<MCF1stPass>;
this->handlers[3] = new MCFHandler<MCF2ndPass>;
}
/**