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
The number of candidate clauses grows exponentially fast as the number of variable grows.
julia> tbl = BranchingTable(10, [[UInt(1) << i] for i=0:9]) BranchingTable{UInt64} 0000000001 0000000010 0000000100 0000001000 0000010000 0000100000 0001000000 0010000000 0100000000 1000000000 julia> OptimalBranchingCore.candidate_clauses(tbl) |> length 1022
Is there a way to truncate this type of candidate clause spaces?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The number of candidate clauses grows exponentially fast as the number of variable grows.
Is there a way to truncate this type of candidate clause spaces?
The text was updated successfully, but these errors were encountered: