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