Skip to content
Snippets Groups Projects
__init__.py 339 B
from .basic_nodes import SfgCallTreeNode, SfgKernelCallNode, SfgBlock, SfgSequence, SfgStatements
from .conditional import SfgBranch, SfgCondition
from .builders import make_sequence

__all__ = [
    "SfgCallTreeNode", "SfgKernelCallNode", "SfgSequence", "SfgBlock", "SfgStatements",
    "SfgCondition", "SfgBranch",
    "make_sequence"
]