Version 0.1.12 released
This version fixes a problem in the measurement function, now it needs the number of qudits as the argument.
Before:
histogram, p = qf.measure(state=yourstate, dim=dim)
After:
histogram, p = qf.measure(state=yourstate, dim=dim, wires=wires)
Additionally, we fixed a typo in the docs.
Before:
import quforge as qf
Now it reads:
import quforge.quforge as qf