Closes #171.
--- /dev/null
+from .hdl.ast import AnyConst, AnySeq, Assert, Assume
+from .hdl.ast import Past, Stable, Rose, Fell, Initial
+++ /dev/null
-from .hdl.ast import AnyConst, AnySeq, Assert, Assume
-from .hdl.ast import Past, Stable, Rose, Fell, Initial
@final
class Initial(Value):
- """Start indicator, for formal verification.
+ """Start indicator, for model checking.
An ``Initial`` signal is ``1`` at the first cycle of model checking, and ``0`` at any other.
"""
"""First-in first-out queues."""
from .. import *
-from ..formal import *
+from ..asserts import *
from ..tools import log2_int
from .coding import GrayEncoder
from .tools import *
from ..hdl import *
-from ..formal import *
+from ..asserts import *
from ..back.pysim import *
from ..lib.coding import *
from .tools import *
from ..hdl import *
-from ..formal import *
+from ..asserts import *
from ..back.pysim import *
from ..lib.fifo import *