Skip to content
Snippets Groups Projects

Refactored ListScheduler, made it non-abstract and added better checks to...

Merged Simon Bjurek requested to merge refactor-list-scheduler into master
2 unresolved threads
Files
5
+ 3
5
@@ -165,6 +165,9 @@ class ListScheduler(Scheduler):
Parameters
----------
sort_order : tuple[tuple[int, bool]]
Specifies which columns in the priority table to sort on and in
which order, where True is ascending order.
max_resources : dict[TypeName, int] | None, optional
Max resources available to realize the schedule, by default None
max_concurrent_reads : int | None, optional
@@ -175,11 +178,6 @@ class ListScheduler(Scheduler):
Specified input times, by default None
output_delta_times : dict[GraphID, int] | None, optional
Specified output delta times, by default None
cyclic : bool | None, optional
If the scheduler is allowed to schedule cyclically (modulo), by default False
sort_order : tuple[tuple[int, bool]]
Specifies which columns in the priority table to sort on and in
which order, where True is ascending order.
"""
def __init__(
Loading