3.4.9 Multiple Algortihms in a Project

 
class dev1(Resource):
    pass

class dev2(Resource):
    pass

def Acso():
    resource = dev1
    start = "2005-1-16"
    balance = SLOPPY

    def Database():
        effort = "2d"

    def Gui():
        effort = "3d"

    def Backend():
        balance = STRICT
        effort = "3d"
        resource = dev1

acso = BalancedProject(Acso) 
 \includegraphics[width=\pwidth]{multiple}
You can also specify the balancing algorithm for each task individually.