We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var_order
The following code (adapted from the README) produces a SIGSEGV error:
from pysdd.sdd import SddManager, Vtree vtree = Vtree(var_count=2, var_order=[1,1]) a,b = SddManager.from_vtree(vtree).vars wmc = (a|b).wmc()
The cause is apparently the nonsencial var_order=[1,1]. Raising a ValueError or something would be better than crashing the entire thing.
var_order=[1,1]
ValueError
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following code (adapted from the README) produces a SIGSEGV error:
The cause is apparently the nonsencial
var_order=[1,1]
. Raising aValueError
or something would be better than crashing the entire thing.The text was updated successfully, but these errors were encountered: