Removed incorrect if check for pool dependency. TODO correct pool time dependency direction.
This commit is contained in:
@@ -261,17 +261,9 @@ PhaseDependenciesTracker::mCalculateDependencies(const std::shared_ptr<Configura
|
||||
otherPhase->id,
|
||||
otherPhase->phaseName.getIDStr()
|
||||
});
|
||||
} else if (timeDiff < dep.timeValue && dep.phaseDep == StringMapper::Identifier::CMD_BUS) {
|
||||
poolController.push(dep.phaseDep, DBDependencyEntry{
|
||||
phase->id,
|
||||
phase->phaseName.getIDStr(),
|
||||
PhaseDependency::dependencyTypeName(dep.depType),
|
||||
dep.timeDepName,
|
||||
otherPhase->id,
|
||||
otherPhase->phaseName.getIDStr()
|
||||
});
|
||||
}
|
||||
|
||||
} else if (timeDiff < dep.timeValue) {
|
||||
if (timeDiff < dep.timeValue) {
|
||||
poolController.increment(dep.phaseDep);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user