Added some documentation, fixed test and missing schedule

This commit is contained in:
robbe 2025-06-30 18:03:24 +02:00
parent ebfd85a666
commit fd6c8b4277
26 changed files with 1284 additions and 72 deletions

View file

@ -2,7 +2,7 @@ from typing import TYPE_CHECKING
from transformation.schedule.schedule_lib import *
if TYPE_CHECKING:
from transformation.schedule.rule_executor import RuleExecutor
from rule_scheduler import RuleSchedular
from rule_scheduler import RuleScheduler
class Schedule:
__slots__ = {
@ -14,5 +14,5 @@ class Schedule:
@staticmethod
def get_matchers(): ...
def init_schedule(self, schedular: RuleSchedular, rule_executor: RuleExecutor, matchers): ...
def init_schedule(self, scheduler: RuleScheduler, rule_executor: RuleExecutor, matchers): ...
def generate_dot(self, *args, **kwargs): ...