dag DAG() Directed Acyclic Graph (DAG) of computations Source code in ecologits/impacts/dag.py 11 12 13def __init__(self) -> None: self.__tasks: dict[str, Callable] = {} self.__dependencies: dict[str, set] = {}