gaplength <value> <unit>

gaplength <value> <unit>
Description

Specifies the minimum required gap between the end of a preceding task and the start of this task, or the start of a following task and the end of this task. This is working time, not calendar time. 7d means 7 working days, not one week. Whether a day is considered a working day or not depends on the defined working hours and global vacations.

AttributesNameTypeDescription
valueREAL 
unitUNIT 
Contextdepends, precedes,
InheritableYesScenario Spec.Yes
See alsogapduration, length

project prj "Example Project" "1.0" 2005-05-29 - 2005-07-01

task t1 "Task 1" {
  start 2005-05-29
}

task t2 "Task 2" {
  # starts 5 calendar days after t1
  depends !t1 { gapduration 5d }
}

task t3 "Task 3" {
  # starts 5 working days after t1
  depends !t1 { gaplength 5d }
}