You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The BoolExpr API is designed for single output so that it has Boolean semantics.
If you are trying to doing something like word level semantics you might want to consider the wrapper library: aiger-bv: https://github.com/mvcisback/py-aiger-bv
There you can use the concat method of UnsignedBVExpr to achieve this.
Dear,
I had a question regarding the reading of AIGs. Say I have a multi-output AIG, how do I convert this into multiple Boolean expressions (BoolExpr)?
In the examples, I only saw code for single-output AIGs:
I have tried to debug the code and change the following in the code (expr.py):
__call__
on line 23:and
output(self)
on line 47:However, this does not seem to work and I have difficulty with the debugging. Could you help me further please?
Thank you in advance.
Best regards,
Sven
The text was updated successfully, but these errors were encountered: