Skip to content

Commit

Permalink
formal→asserts
Browse files Browse the repository at this point in the history
Closes #171.
  • Loading branch information
whitequark committed Aug 19, 2019
1 parent 2770db6 commit 32bfbb1
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion nmigen/hdl/ast.py
Original file line number Diff line number Diff line change
Expand Up @@ -993,7 +993,7 @@ def Fell(expr, clocks=0, domain=None):

@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.
"""
Expand Down
2 changes: 1 addition & 1 deletion nmigen/lib/fifo.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""First-in first-out queues."""

from .. import *
from ..formal import *
from ..asserts import *
from ..tools import log2_int
from .coding import GrayEncoder

Expand Down
2 changes: 1 addition & 1 deletion nmigen/test/test_lib_coding.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .tools import *
from ..hdl import *
from ..formal import *
from ..asserts import *
from ..back.pysim import *
from ..lib.coding import *

Expand Down
2 changes: 1 addition & 1 deletion nmigen/test/test_lib_fifo.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .tools import *
from ..hdl import *
from ..formal import *
from ..asserts import *
from ..back.pysim import *
from ..lib.fifo import *

Expand Down

0 comments on commit 32bfbb1

Please sign in to comment.