/** * Retrieve a duration in the form required by Primavera. * * @param duration Duration instance * @return formatted duration */ private Double getDuration(Duration duration) { Double result; if (duration == null) { result = null; } else { if (duration.getUnits() != TimeUnit.HOURS...
For those project schedulers who are not familiar with how to calculate the critical of bigger projects, it is always possible to resort to a commercial scheduling software (e.g., Microsoft Project, Oracle Primavera) to extract the values of the activity slacks (si). Then, the rest of the...