Skip to content

Commit

Permalink
fix: Update pulse return logic to use repeated hpi_pulse for improved…
Browse files Browse the repository at this point in the history
… functionality
  • Loading branch information
Akinori Machino committed Dec 24, 2024
1 parent 07341be commit 930fd80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qubex/experiment/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ def get_pulse_for_state(
if state == "0":
return Blank(0)
elif state == "1":
return self.pi_pulse[target]
return self.hpi_pulse[target].repeated(2)
else:
hpi = self.hpi_pulse[target]
if state == "+":
Expand Down

0 comments on commit 930fd80

Please sign in to comment.