Menu

#230 Gantt Chart Critical Path

open
nobody
None
5
2012-11-27
2008-12-15
No

Hello All,

I've added functionality for calculating the Critical Path of an IntervalCategoryDataset. Given a TaskSeries, one can now ask for the calculation of the critical path for that series of Task objects.

The general method for calculating critical path comes from:

http://www.gamedev.net/reference/articles/article1440.asp

I've modified the Task and TaskSeries files. A Task now has a list of predecessors, which are Tasks that need to be completed before the current Task can begin. Note that Task still works in the same way it used to, and you can completely disregard the critical path calculation if you want to. The diffs against these two are included.

I've also included 3 new classes: CriticalPath, CriticalPathNode, and CriticalPathEdge. I create a dependency graph with nodes and edges and then the CriticalPath class calculates the critical path based on this graph.

If you have any questions just let me know.

thanks,

Chris

Discussion

  • Christopher Katz

    Task diff

     
  • Christopher Katz

    TaskSeries diff

     
  • Christopher Katz

    File Added: TaskSeriesdiff

     
  • Christopher Katz

    File Added: CriticalPath.java

     
  • Christopher Katz

    CriticalPath

     
  • Christopher Katz

    Critical Path Edge

     
  • Christopher Katz

    File Added: CriticalPathEdge.java

     
  • Christopher Katz

    Critical Path Node

     
  • Christopher Katz

    File Added: CriticalPathNode.java

     

Log in to post a comment.