formal→asserts
authorwhitequark <cz@m-labs.hk>
Mon, 19 Aug 2019 20:23:24 +0000 (20:23 +0000)
committerwhitequark <cz@m-labs.hk>
Mon, 19 Aug 2019 20:23:24 +0000 (20:23 +0000)
Closes #171.

nmigen/asserts.py [new file with mode: 0644]
nmigen/formal.py [deleted file]
nmigen/hdl/ast.py
nmigen/lib/fifo.py
nmigen/test/test_lib_coding.py
nmigen/test/test_lib_fifo.py

diff --git a/nmigen/asserts.py b/nmigen/asserts.py
new file mode 100644 (file)
index 0000000..f374cf0
--- /dev/null
@@ -0,0 +1,2 @@
+from .hdl.ast import AnyConst, AnySeq, Assert, Assume
+from .hdl.ast import Past, Stable, Rose, Fell, Initial
diff --git a/nmigen/formal.py b/nmigen/formal.py
deleted file mode 100644 (file)
index f374cf0..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-from .hdl.ast import AnyConst, AnySeq, Assert, Assume
-from .hdl.ast import Past, Stable, Rose, Fell, Initial
index 757f5268d26256ce6bb3b7a11e82dbf8ddc7655d..c5376d0d02dfd475300cdfc8d6fdaeb2e3a65da2 100644 (file)
@@ -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.
     """
index c59a040c13c4f88c1b969169b2593ac285bfb3c7..2808e549c1550d620826ecf23da2d4e36d4ef3d5 100644 (file)
@@ -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
 
index 4cdd83f136fd32ac7626c78b1f5931fdfe82c914..6052c9a6fe14ca273a8fc929606a24bbc34bce20 100644 (file)
@@ -1,6 +1,6 @@
 from .tools import *
 from ..hdl import *
-from ..formal import *
+from ..asserts import *
 from ..back.pysim import *
 from ..lib.coding import *
 
index 9176037f6744d617d1be8ade2c082246efe413b7..9d136c8951b382a0b37c050f432de9a20c8c9cf9 100644 (file)
@@ -1,6 +1,6 @@
 from .tools import *
 from ..hdl import *
-from ..formal import *
+from ..asserts import *
 from ..back.pysim import *
 from ..lib.fifo import *