gapduration <value> <unit>

gapduration <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 calendar time, not working time. 7d means one week.

AttributesNameTypeDescription
valueREAL 
unitUNIT 
Contextdepends, precedes,
InheritableYesScenario Spec.Yes
See alsoduration, gaplength

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 }
}