Skip to content

Version 0.1.12 released

Compare
Choose a tag to compare
@tiago939 tiago939 released this 07 Oct 18:15
· 4 commits to main since this release

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