(svn r26166) -Fix: Scale flows only after mapping to avoid rounding errors.

This commit is contained in:
fonsinchen
2013-12-20 14:57:44 +00:00
parent 4818b72c75
commit ec492bfb77
5 changed files with 42 additions and 8 deletions

View File

@@ -146,9 +146,9 @@ LinkGraphSchedule::LinkGraphSchedule()
this->handlers[0] = new InitHandler;
this->handlers[1] = new DemandHandler;
this->handlers[2] = new MCFHandler<MCF1stPass>;
this->handlers[3] = new FlowMapper;
this->handlers[3] = new FlowMapper(false);
this->handlers[4] = new MCFHandler<MCF2ndPass>;
this->handlers[5] = new FlowMapper;
this->handlers[5] = new FlowMapper(true);
}
/**