Skip to content

Commit bfccbad

Browse files
committed
Merge branch 'master' of github.com:mvcisback/py-aiger
2 parents c08b153 + 2ecbce6 commit bfccbad

File tree

2 files changed

+3
-45
lines changed

2 files changed

+3
-45
lines changed

README.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,10 @@ aag3 = aag1 >> aag2
9999
aig4 = 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.)
105106
aig5 = 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'.

examples/gridworld.py

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)