No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

aaa3 311B

1234567891011121314151617181920
  1. # Example 3
  2. # This problem has deterministic results for all greedy solver variants.
  3. # Makespan for each variant:
  4. # - SPT: 53
  5. # - LPT: 92
  6. # - SRPT: 78
  7. # - LRPT: 54
  8. # - EST_SPT: 48
  9. # - EST_LPT: 56
  10. # - EST_SRPT: 53
  11. # - EST_LRPT: 56
  12. 4 3 # num-jobs num-tasks
  13. 0 1 1 2 2 15
  14. 1 4 0 5 2 11
  15. 0 7 2 8 1 13
  16. 2 3 0 18 1 6