Skip to content

Commit

Permalink
revert: add T, Tdg, X gates (#466) (#469)
Browse files Browse the repository at this point in the history
Refs: d81f724.
  • Loading branch information
lmondada committed Aug 30, 2023
1 parent d81f724 commit 76f0e3d
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions src/std_extensions/quantum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,30 +36,6 @@ fn extension() -> Extension {
one_qb_func,
)
.unwrap();
extension
.add_op_custom_sig_simple(
SmolStr::new_inline("T"),
"T gate".into(),
vec![],
one_qb_func,
)
.unwrap();
extension
.add_op_custom_sig_simple(
SmolStr::new_inline("Tdg"),
"T-adjoint gate".into(),
vec![],
one_qb_func,
)
.unwrap();
extension
.add_op_custom_sig_simple(
SmolStr::new_inline("X"),
"X gate".into(),
vec![],
one_qb_func,
)
.unwrap();
extension
.add_op_custom_sig_simple(
SmolStr::new_inline("RzF64"),
Expand Down

0 comments on commit 76f0e3d

Please sign in to comment.