thanks for the format

This commit is contained in:
Noa Aarts 2026-01-27 18:21:58 +01:00
parent f3e9e420a7
commit 51256858f6
Signed by: noa
GPG key ID: 1850932741EFF672
2 changed files with 235 additions and 495 deletions

View file

@ -28,6 +28,14 @@ gate_set: list[GateType] = [
]
def sample_hyperspace(*args: tuple[int, int] | tuple[float, float]):
minimums: list[float | int] = [arg[0] for arg in args]
maximums: list[float | int] = [arg[1] for arg in args]
while True:
yield ()
def plot_best_circuits(best_circuits: list[QuantumCircuit]) -> None:
fig, ax = plt.subplots()