File tree Expand file tree Collapse file tree 2 files changed +3
-45
lines changed
Expand file tree Collapse file tree 2 files changed +3
-45
lines changed Original file line number Diff line number Diff line change @@ -99,9 +99,10 @@ aag3 = aag1 >> aag2
9999aig4 = aag1 | aag2
100100```
101101
102- ## Adding Feedback (inserts a delay)
102+ ## Circuits with Latches/Feedback/Delay
103103``` python
104- # Connect output y to input x with delay (initialized to True).
104+ # Connect output y to input x with delay, initialized to True.
105+ # (Default initialization is False.)
105106aig5 = aig1.feedback(
106107 inputs = [' x' ],
107108 outputs = [' y' ],
@@ -110,12 +111,6 @@ aig5 = aig1.feedback(
110111)
111112```
112113
113- ## Count solutions
114- ``` python
115- # Assume 1 output. This could be passed as an argument in the future.
116- print (utils.count(aag3))
117- ```
118-
119114## Relabeling
120115``` python
121116# Relabel input 'x' to 'z'.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments