im_wower
·
2026-04-01
__init__.py
1"""CIE — Cognitive Inference Engine"""
2from .graph import Graph, Node, Edge
3from .state import CIEState, AttentionPool, PendingSignal
4from .dynamics import Dynamics
5from .runtime import CIERuntime
6
7__all__ = ['Graph', 'Node', 'Edge', 'CIEState', 'AttentionPool', 'PendingSignal', 'Dynamics', 'CIERuntime']