Skip to content

Commit 6ba926d

Browse files
committed
Allow lazy argument in to_aig
1 parent c2e59ae commit 6ba926d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aiger/aig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ def sub(node):
462462
)
463463

464464

465-
def to_aig(circ) -> AIG:
465+
def to_aig(circ, *, allow_lazy=True) -> AIG:
466466
if isinstance(circ, pathlib.Path) and circ.is_file():
467467
circ = parser.load(circ)
468468
elif isinstance(circ, str):

0 commit comments

Comments
 (0)