3.5.5 Adjusting the Project

 
class dev1(Resource): pass

def Acso():
    resource = dev1
    start = "2005-1-16"
    now = "2005-1-19 10:00" 

    def Database():
        effort = "1d"

    def Gui():
        effort = "2d"
        todo = "1d"

    def Backend():
        effort = "1d"
        
acso = BalancedProject(Acso)
acso = AdjustedProject(acso)
 \includegraphics[width=\pwidth]{tradjust}
Name Effort Complete Demand Complete Todo Done Todo + Done
Database 1d 100 100 0d 1d 1d
Gui 2d 2H 55 55 1d 1d 2H 2d 2H
Backend 1d 0 0 1d 0d 1d
With AdjustedProject you can simulate what happens, when you adjust the effort to done + todo.