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
foreach_down
reset_counter
And overall want a more reliable way of reseting the travesals without having to reload the circuit again.
The text was updated successfully, but these errors were encountered:
I added reset_counter_hard in fbdedf2 It resets the counter even if the nodes' fields are messed up (but is slower than the default implementation).
reset_counter_hard
julia> circuit = load_smooth_logic_circuit(zoo_psdd_file("plants.psdd")); julia> @btime (reset_counter(circuit,1);reset_counter(circuit,0)) 46.723 ms (0 allocations: 0 bytes) julia> @btime (reset_counter_hard(circuit,1);reset_counter_hard(circuit,0)) 73.743 ms (540960 allocations: 14.26 MiB)
I believe this closes the issue?
Sorry, something went wrong.
No branches or pull requests
foreach_down
had some unexpected behaviourreset_counter
might not work in all casesAnd overall want a more reliable way of reseting the travesals without having to reload the circuit again.
The text was updated successfully, but these errors were encountered: