Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 3.25 KB | None | 0 0
  1. ['stress', 'wealth', 'influence', 'fame', 'training']
  2. Naive optimization:
  3. [((5, [8, 0, 2, 2, 1]), ['costumed crusade', 'mingle']),
  4.  ((5, [8, 0, 2, 2, 1]), ['mingle', 'costumed crusade']),
  5.  ((5, [8, 1, 1, 2, 1]), ['day job', 'costumed crusade']),
  6.  ((5, [9, 0, 1, 2, 2]), ['costumed crusade', 'routine training']),
  7.  ((5, [9, 0, 1, 2, 2]), ['routine training', 'costumed crusade'])]
  8. Naive quadratic optimization:
  9. [((10, [8, 1, 3, 0, 0]), ['helping hand', 'mingle']),
  10.  ((10, [8, 1, 3, 0, 0]), ['mingle', 'helping hand']),
  11.  ((10, [9, 0, 1, 0, 3]), ['intense training', 'lay low']),
  12.  ((10, [9, 0, 1, 0, 3]), ['intense training', 'recreation']),
  13.  ((10, [9, 0, 1, 0, 3]), ['lay low', 'intense training']),
  14.  ((10, [9, 0, 1, 0, 3]), ['recreation', 'intense training'])]
  15. optimizing for stress
  16. [((-1, [1, 0, 0, 0, 0]), ['lay low', 'lay low', 'therapy']),
  17.  ((-1, [1, 0, 0, 0, 0]), ['lay low', 'recreation', 'therapy']),
  18.  ((-1, [1, 0, 0, 0, 0]), ['lay low', 'therapy', 'lay low']),
  19.  ((-1, [1, 0, 0, 0, 0]), ['lay low', 'therapy', 'recreation']),
  20.  ((-1, [1, 0, 0, 0, 0]), ['recreation', 'lay low', 'therapy']),
  21.  ((-1, [1, 0, 0, 0, 0]), ['recreation', 'recreation', 'therapy']),
  22.  ((-1, [1, 0, 0, 0, 0]), ['recreation', 'therapy', 'lay low']),
  23.  ((-1, [1, 0, 0, 0, 0]), ['recreation', 'therapy', 'recreation']),
  24.  ((-1, [1, 0, 0, 0, 0]), ['therapy', 'lay low', 'lay low']),
  25.  ((-1, [1, 0, 0, 0, 0]), ['therapy', 'lay low', 'recreation']),
  26.  ((-1, [1, 0, 0, 0, 0]), ['therapy', 'recreation', 'lay low']),
  27.  ((-1, [1, 0, 0, 0, 0]), ['therapy', 'recreation', 'recreation'])]
  28. optimizing for wealth
  29. [((2, [4, 2, 0, 0, 0]), ['day job', 'day job', 'lay low']),
  30.  ((2, [4, 2, 0, 0, 0]), ['day job', 'day job', 'recreation']),
  31.  ((2, [4, 2, 0, 0, 0]), ['day job', 'lay low', 'day job']),
  32.  ((2, [4, 2, 0, 0, 0]), ['day job', 'recreation', 'day job']),
  33.  ((2, [4, 2, 0, 0, 0]), ['lay low', 'day job', 'day job']),
  34.  ((2, [4, 2, 0, 0, 0]), ['recreation', 'day job', 'day job']),
  35.  ((2, [8, 2, 2, 0, 0]), ['day job', 'helping hand']),
  36.  ((2, [8, 2, 2, 0, 0]), ['helping hand', 'day job'])]
  37. optimizing for influence
  38. [((3, [8, 1, 3, 0, 0]), ['helping hand', 'mingle']),
  39.  ((3, [8, 1, 3, 0, 0]), ['mingle', 'helping hand'])]
  40. optimizing for fame
  41. [((2, [7, 0, 1, 2, 1]), ['costumed crusade', 'recreation', 'recreation']),
  42.  ((2, [7, 0, 1, 2, 1]), ['lay low', 'costumed crusade', 'recreation']),
  43.  ((2, [7, 0, 1, 2, 1]), ['lay low', 'lay low', 'costumed crusade']),
  44.  ((2, [7, 0, 1, 2, 1]), ['lay low', 'recreation', 'costumed crusade']),
  45.  ((2, [7, 0, 1, 2, 1]), ['recreation', 'costumed crusade', 'recreation']),
  46.  ((2, [7, 0, 1, 2, 1]), ['recreation', 'lay low', 'costumed crusade']),
  47.  ((2, [7, 0, 1, 2, 1]), ['recreation', 'recreation', 'costumed crusade']),
  48.  ((2, [8, 0, 2, 2, 1]), ['costumed crusade', 'mingle']),
  49.  ((2, [8, 0, 2, 2, 1]), ['mingle', 'costumed crusade']),
  50.  ((2, [8, 1, 1, 2, 1]), ['day job', 'costumed crusade']),
  51.  ((2, [9, 0, 1, 2, 2]), ['costumed crusade', 'routine training']),
  52.  ((2, [9, 0, 1, 2, 2]), ['routine training', 'costumed crusade'])]
  53. optimizing for training
  54. [((3, [9, 0, 1, 0, 3]), ['intense training', 'lay low']),
  55.  ((3, [9, 0, 1, 0, 3]), ['intense training', 'recreation']),
  56.  ((3, [9, 0, 1, 0, 3]), ['lay low', 'intense training']),
  57.  ((3, [9, 0, 1, 0, 3]), ['recreation', 'intense training'])]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement