1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
project "Resource Efficiency Example" 2007-07-21 - 2007-07-22 {
timezone "America/Denver"
}
# A team of 5 people. They can only be assigned en block. Either all
# or nobody works.
resource tuxies "Tuxies" { efficiency 5.0 }
# A hard-working guy
resource tux1 "Tux 1" { efficiency 1.2 }
# And a lazy one
resource tux2 "Tux 2" { efficiency 0.9 }
# And a thing that cannot do any work
resource confRoom "Conference Room" { efficiency 0 }
task t "An important date" {
start 2007-07-21
}
|