-
Hi,
I tried the demo program given in py-aiger-abc:
```
import aiger
import aiger_abc
x = aiger.atom('x')
f = x ^ x
f2 = aiger_abc.simplify(f)
print(f2.aig)
```
and got following error…
-
When I run this example "sby/docs/examples/demos/fib". I found no suprove command for oss-cad-suite-windows-x64-20220801.
```
SBY 11:15:16 [fib_live] engine_0: aiger suprove
SBY 11:15:16 [fib_liv…
-
Hi,
I tried to load an aiger file in binary format with the following commands:
import aiger
aig1 = aiger.load('path_to_file',rule='aig')
This lead to :
Traceback (most recent call last):
…
-
**Describe the bug**
The optimized circuit was not equivalent to the original one.
**To Reproduce**
Version: latest (#544)
```c++
// common
#include
#include
// algorithm under test
#…
-
I suspect this may already be a known issue, but just in case it isn't I'm writing it up because it caught me out today.
Edit: I've had a bit more of a play and this may just be misunderstanding ab…
-
### What is the expected behaviour?
```python
pip install qiskit
```
Should install qiskit but instead currently fails while trying to build tweedledum.
I'm hoping there could maybe b…
-
It seems I can write something like `m.d.comb += Assert(Past(signal) == 0)`. If `multiclock` is off in the sby file, what exactly is `Past`?
Here's an example. First, `example.py`:
```python
f…
-
Hello,
I am trying to count the number of inverters in an MIG network is it possible?
-
### Version
0.22
### Reproduction Steps
```make test```
### Expected Behavior
n/a
### Actual Behavior
```
Test: t_wide_read_a7r0w5b2 -> ok
Test: t_wide_write_a7r0w5b2 -> ok
gmake[2]: Leaving…
-
Looking at the documentation at https://pysathq.github.io/docs/html/api/formula.html#pysat.formula.CNF.from_aiger mentioned in other issues in this repository, I thought I'd be able to use the `aiger`…