Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. Region FF R PF B
  2. SE 7 2 6 5
  3. NE 8 4 5 3
  4. FW 4 8 2 11
  5. MW 5 4 7 5
  6.  
  7. Let Region 1 = SE, Region 2 = NE, Region 3 = FW, Region 4 = MW, and let FF = Bank 1, R = Bank 2, PF = Bank 3, and B = Bank 4.
  8. Let xij = daily amount of checks for region i sent from bank j
  9. let yj = 1 if bank j is used and yj = 0 if bank j is not used.
  10.  
  11. max z = 1.05x11 + .30x12 + .90x13 + .75x14 + 1.2x21 + .60x22 + .75x23 +
  12.  
  13. st. x11 + x12 + x13 + x14 = 40,000
  14. x21 + x22 + x23 + x24 = 60,000
  15. x31 + x32 + x33 + x34 = 30,000
  16. x41 + x42 + x43 + x44 = 50,000
  17. x11 + x21 + x31 + x41 <= 90,000 y1
  18. x12 + x22 + x32 + x42 <= 90,000 y2
  19. x13 + x23 + x33 + x43 <= 90,000 y3
  20. x14 + x24 + x34 + x44 <= 90,000 y4
  21. xij >= 0,
  22. yj = 0 or 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement