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
Thank you for the oxidd package! I'm sorry if I've missed this somewhere, but is it possible to iterate over all satisfying assignments for a ZBDD with oxidd? I'm using the python interface, and I can see the function ZBDDFunction.pick_cube which can be used to give me a satisfying assignment, but nothing that seems to allow me to iterate over all satifying assignments. It would be great to have something like ZBDDFunction.pick_cube_iter that would give an iterator (python generator) that can be used to loop over all satisfying assignments.
The text was updated successfully, but these errors were encountered:
There is no simple function for iterating over all cubes of a function yet. Since you mention ZBDDFunction.pick_cube (and not the recently added symbolic version), I assume you want the cubes as lists over bool|None and not as ZBDDs, right? I’m currently working on a paper and the deadline is coming close, but afterwards I can implement that.
Thank you for the oxidd package! I'm sorry if I've missed this somewhere, but is it possible to iterate over all satisfying assignments for a ZBDD with oxidd? I'm using the python interface, and I can see the function
ZBDDFunction.pick_cube
which can be used to give me a satisfying assignment, but nothing that seems to allow me to iterate over all satifying assignments. It would be great to have something likeZBDDFunction.pick_cube_iter
that would give an iterator (python generator) that can be used to loop over all satisfying assignments.The text was updated successfully, but these errors were encountered: