// -------------------------------------------------------------------------- // Licensed Materials - Property of IBM // // 5725-A06 5725-A29 5724-Y48 5724-Y49 5724-Y54 5724-Y55 // Copyright IBM Corporation 1998, 2013. All Rights Reserved. // // Note to U.S. Government Users Restricted Rights: // Use, duplication or disclosure restricted by GSA ADP Schedule // Contract with IBM Corp. // -------------------------------------------------------------------------- NbHouses = 9; ManNames = {"John", "Mark"}; // working with only one manager TaskNames = { "masonry", "carpentry", "plumbing", "ceiling", "roofing", "painting", "windows", "facade", "garden", "moving" }; Duration = [ 3, 1, 4, 1, 5, 1, 5, 1, 5, 5 ]; Worker = #[ "masonry" : "Joe" , "carpentry": "Joe" , "plumbing" : "Jim" , "ceiling" : "Jim" , "roofing" : "Joe" , "painting" : "Jim" , "windows" : "Jim" , "facade" : "Joe" , "garden" : "Joe" , "moving" : "Jim" ]#; ReleaseDate = [ 0, 0, 0, 0, 0, 0, 0, 0, 0]; DueDate = [250, 250, 250, 250, 250, 250, 250, 250, 250]; Weight = [100.0, ,100, 100.0, 100.0, 200.0, 100.0, 100.0, 200.0, 100.0]; Precedences = { <"masonry", "carpentry">, <"masonry", "plumbing">, <"masonry", "ceiling">, <"carpentry", "roofing">, <"ceiling", "painting">, <"roofing", "windows">, <"roofing", "facade">, <"plumbing", "facade">, <"roofing", "garden">, <"plumbing", "garden">, <"windows", "moving">, <"facade", "moving">, <"garden", "moving">, <"painting", "moving"> }; T=[1,1,1,1,1,1,1,1,1];