Skip to main content

Legacy API note: show_mytime

tilearn.show_mytime is documented in older materials but is not part of the current package API.

If you are migrating older scripts, use the following replacements:

  • For weighted completion sequencing (1 || sum(w_j C_j)):
  • For maximum lateness-oriented due-date ordering:
  • For mixed multi-list workflows with precedence and non-precedence files:

Migration example

import tilearn as tl

jobs = [
["Job 1", 4.0, 0, 10, 1.0],
["Job 2", 2.0, 0, 7, 3.0],
]

# Old docs: tl.show_mytime(jobs, due_date)
# Current API:
schedule = tl.wspt(jobs)

See API reference hub for the complete module map.

On this page