3.4.3 Multiple Resources With STRICT

 
class dev1(Resource):
    pass

class dev2(Resource):
    pass

def Acso():
    resource = dev1 | dev2
    start = "2005-1-16"
    balance = STRICT

    def Database():
        effort = "2d"

    def Gui():
        effort = "3d"

    def Backend():
        effort = "3d"

acso = BalancedProject(Acso) 
 \includegraphics[width=\pwidth]{mstrict}
If there are several alternate resource, STRICT will use the resource with minimal load.