formal→asserts

Closes #171.
This commit is contained in:
whitequark 2019-08-19 20:23:24 +00:00
parent 2770db6de8
commit 32bfbb11cb
5 changed files with 4 additions and 4 deletions

View file

@ -993,7 +993,7 @@ def Fell(expr, clocks=0, domain=None):
@final @final
class Initial(Value): 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. An ``Initial`` signal is ``1`` at the first cycle of model checking, and ``0`` at any other.
""" """

View file

@ -1,7 +1,7 @@
"""First-in first-out queues.""" """First-in first-out queues."""
from .. import * from .. import *
from ..formal import * from ..asserts import *
from ..tools import log2_int from ..tools import log2_int
from .coding import GrayEncoder from .coding import GrayEncoder

View file

@ -1,6 +1,6 @@
from .tools import * from .tools import *
from ..hdl import * from ..hdl import *
from ..formal import * from ..asserts import *
from ..back.pysim import * from ..back.pysim import *
from ..lib.coding import * from ..lib.coding import *

View file

@ -1,6 +1,6 @@
from .tools import * from .tools import *
from ..hdl import * from ..hdl import *
from ..formal import * from ..asserts import *
from ..back.pysim import * from ..back.pysim import *
from ..lib.fifo import * from ..lib.fifo import *