Skip to content

Commit

Permalink
Removed the example case in the code I was using for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-stp committed Aug 16, 2022
1 parent 57adc10 commit da9694c
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions match_factor.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,12 +220,3 @@ def keyMatrix(self):
keyMatrix[i,1] = -1
return keyMatrix

#TEST CASE
#make truck model number constraint rows
fleet = Fleet()
fleet.addTrucks(TruckType(name="CAT797",capacity=430.4), numTrucks = 10)
fleet.addTrucks(TruckType(name="CAT777",capacity=117.3), numTrucks = 5)
fleet.addTrucks(TruckType(name="CAT787",capacity=233.3), numTrucks = 4)
fleet.addLoader(Loader(name="Shovel_1",bucketCap=55,swingTime=30,truckSetupTime=60,truckCycleTime=2000))
fleet.addLoader(Loader(name="Shovel_2",bucketCap=55,swingTime=30,truckSetupTime=60,truckCycleTime=1580))
fleet.optimize(1.1)

0 comments on commit da9694c

Please sign in to comment.