1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
use crate::{
components::{
measurement::MeasurementBasis, operator::{
Hadamard, Identity, Matchgate, Operator, Pauli, PhaseS, PhaseSdag, PhaseShift, PhaseT, PhaseTdag, RotateX, RotateY, RotateZ, Toffoli, Unitary2, CNOT, SWAP
}, parametric::parametric_gate::ParametricGate, state::State
},
errors::Error, PauliString,
};
use num_complex::Complex;
/// Represents a quantum gate as part of a quantum circuit.
#[derive(Debug, Clone)]
pub enum Gate {
/// Represents an operator gate.
///
/// # Fields
///
/// * `operator` - A boxed dynamic operator trait object.
///
/// * `target_indices` - The indices of the qubits on which the operator acts.
///
/// * `control_indices` - Optional control qubit indices for controlled gates. If empty, the gate is applied unconditionally.
Operator(Box<dyn Operator>, Vec<usize>, Vec<usize>),
/// Represents a measurement gate.
///
/// # Fields
///
/// * `MeasurementBasis` - The basis of measurement (e.g., computational basis).
/// * `indices` - The indices of the measured qubits.
Measurement(MeasurementBasis, Vec<usize>),
/// Represents a parametric gate.
Parametric(Box<dyn ParametricGate>, Vec<usize>, Vec<usize>),
/// Represents a Pauli String gate.
///
/// # Fields
///
/// * `PauliString` - The Pauli String operator.
PauliString(PauliString),
/// Represents a Pauli time evolution gate.
/// WARNING: This gate is not yet supported in the compiler and cannot be used in circuits that need to be compiled.
/// The compiler will panic if this gate is encountered during compilation.
///
/// # Fields
///
/// * `PauliString` - The Pauli String operator.
/// * `time` - The time parameter for the evolution.
PauliTimeEvolution(PauliString, f64),
}
impl Gate {
/// Creates a new measurement gate for the specified qubit indices.
///
/// # Arguments
///
/// * `qubit_indices` - The indices of the qubits to be measured.
/// * `basis` - The basis of measurement (e.g., computational basis).
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a measurement gate.
pub fn new_measurement(qubit_indices: Vec<usize>, basis: MeasurementBasis) -> Self {
Gate::Measurement(basis, qubit_indices)
}
/// Creates a new operator gate for the specified qubit indices.
///
/// # Arguments
///
/// * `operator` - A boxed dynamic operator trait object.
///
/// * `target_indices` - The indices of the qubits on which the operator acts.
///
/// * `control_indices` - Optional control qubit indices for controlled gates.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing an operator gate.
pub fn new_operator(
operator: Box<dyn Operator>,
target_indices: Vec<usize>,
control_indices: Vec<usize>,
) -> Self {
Gate::Operator(operator, target_indices, control_indices)
}
/// Applies the gate to the given state and returns the new state.
///
/// # Arguments
///
/// * `state` - The quantum state to which the gate will be applied.
///
/// # Returns
///
/// * `State` - The new quantum state after applying the gate.
pub fn apply(&self, state: &State) -> Result<State, Error> {
match self {
Gate::Operator(operator, target_indices, control_indices) => {
operator.apply(state, target_indices, control_indices.as_slice())
}
Gate::Measurement(basis, indices) => state
.measure(*basis, indices.as_slice())
.map(|measurementresult| measurementresult.get_new_state().clone()),
Gate::Parametric(p_gate, target_indices, control_indices) => {
let concrete_gates = p_gate.to_concrete_gates(target_indices, control_indices);
concrete_gates
.into_iter()
.try_fold(state.clone(), |current_state, gate| {
gate.apply(¤t_state)
})
}
Gate::PauliString(pauli_string) => {
pauli_string.apply_normalised(state)
}
Gate::PauliTimeEvolution(pauli_string, time) => {
pauli_string.apply_exp_neg_i_dt(state, *time)
}
}
}
/// Returns the indices of the qubits on which the gate acts.
///
/// # Returns
///
/// * `Vec<usize>` - A vector of indices of the qubits on which the gate acts.
pub fn get_target_qubits(&self) -> Vec<usize> {
match self {
Gate::Operator(_, target_indices, _) => target_indices.clone(),
Gate::Measurement(_, indices) => indices.clone(),
Gate::Parametric(_, target_indices, _) => target_indices.clone(),
Gate::PauliString(pauli_string) => pauli_string.get_targets(),
Gate::PauliTimeEvolution(pauli_string, _) => pauli_string.get_targets(),
}
}
/// Returns the control indices of the gate if it has any.
///
/// # Returns
///
/// * `Option<&Vec<usize>>` - An optional vector of control indices.
pub fn get_control_qubits(&self) -> Option<&Vec<usize>> {
match self {
Gate::Operator(_, _, control_indices) => Some(control_indices),
Gate::Measurement(_, _) => None,
Gate::Parametric(_, _, control_indices) => Some(control_indices),
Gate::PauliString(_) => None,
Gate::PauliTimeEvolution(_, _) => None,
}
}
// -- SINGLE-QUBIT GATES --
/// Creates a new Hadamard gate for the specified qubit index.
///
/// # Arguments
///
/// * `qubit_index` - The index of the qubit on which the Hadamard gate acts.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a Hadamard gate.
pub fn h_gate(qubit_index: usize) -> Self {
Gate::Operator(Box::new(Hadamard), vec![qubit_index], vec![])
}
/// Creates new Hadamard gates for the specified qubit indices.
///
/// # Arguments
///
/// * `qubit_indices` - The indices of the qubits on which the Hadamard gate acts.
///
/// # Returns
///
/// * `Gates` - A vector of Gate structs representing Hadamard gates for each qubit index.
pub fn h_multi_gate(qubit_indices: Vec<usize>) -> Vec<Self> {
qubit_indices
.into_iter()
.map(Gate::h_gate)
.collect()
}
/// Creates new controlled Hadamard gates for the specified qubit indices.
///
/// # Arguments
///
/// * `target_indices` - The indices of the target qubits.
/// * `control_indices` - The indices of the control qubits.
///
/// # Returns
///
/// * `Gates` - A vector of Gate structs representing controlled Hadamard gates for each target qubit index.
pub fn h_controlled_gates(
target_indices: Vec<usize>,
control_indices: Vec<usize>,
) -> Vec<Self> {
target_indices
.into_iter()
.map(|target_index| Gate::Operator(
Box::new(Hadamard),
vec![target_index],
control_indices.clone(),
))
.collect()
}
/// Creates a new Pauli-X gate for the specified qubit index.
///
/// # Arguments
///
/// * `qubit_index` - The index of the qubit on which the Pauli-X gate acts.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a Pauli-X gate.
pub fn x_gate(qubit_index: usize) -> Self {
Gate::Operator(Box::new(Pauli::X), vec![qubit_index], vec![])
}
/// Creates new controlled Pauli-X gates for the specified qubit indices.
///
/// # Arguments
///
/// * `qubit_indices` - The indices of the qubits on which the Pauli-X gates act.
///
/// # Returns
///
/// * `Vec<Gate>` - A vector of Gate structs representing Pauli-X gates for each qubit index.
pub fn x_multi_gate(qubit_indices: Vec<usize>) -> Vec<Self> {
qubit_indices
.into_iter()
.map(Gate::x_gate)
.collect()
}
/// Creates new Pauli-X gates for the specified qubit indices with control qubits.
///
/// # Arguments
///
/// * `target_indices` - The indices of the target qubits.
///
/// * `control_indices` - The indices of the control qubits.
///
/// # Returns
///
/// * `Gates` - A vector of Gate structs representing controlled Pauli-X gates for each target qubit index.
pub fn x_controlled_gates(
target_indices: Vec<usize>,
control_indices: Vec<usize>,
) -> Vec<Self> {
target_indices
.into_iter()
.map(|target_index| Gate::Operator(
Box::new(Pauli::X),
vec![target_index],
control_indices.clone(),
))
.collect()
}
/// Creates a new Pauli-Y gate for the specified qubit index.
///
/// # Arguments
///
/// * `qubit_index` - The index of the qubit on which the Pauli-Y gate acts.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a Pauli-Y gate.
pub fn y_gate(qubit_index: usize) -> Self {
Gate::Operator(Box::new(Pauli::Y), vec![qubit_index], vec![])
}
/// Creates new Pauli-Y gates for the specified qubit indices.
///
/// # Arguments
///
/// * `qubit_indices` - The indices of the qubits on which the Pauli-Y gates act.
///
/// # Returns
///
/// * `Vec<Gate>` - A vector of Gate structs representing Pauli-Y gates for each qubit index.
pub fn y_multi_gate(qubit_indices: Vec<usize>) -> Vec<Self> {
qubit_indices
.into_iter()
.map(Gate::y_gate)
.collect()
}
/// Creates new controlled Pauli-Y gates for the specified qubit indices.
///
/// # Arguments
///
/// * `target_indices` - The indices of the target qubits.
///
/// * `control_indices` - The indices of the control qubits.
///
/// # Returns
///
/// * `Gates` - A vector of Gate structs representing controlled Pauli-Y gates for each target qubit index.
pub fn y_controlled_gates(
target_indices: Vec<usize>,
control_indices: Vec<usize>,
) -> Vec<Self> {
target_indices
.into_iter()
.map(|target_index| Gate::Operator(
Box::new(Pauli::Y),
vec![target_index],
control_indices.clone(),
))
.collect()
}
/// Creates a new Pauli-Z gate for the specified qubit index.
///
/// # Arguments
///
/// * `qubit_index` - The index of the qubit on which the Pauli-Z gate acts.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a Pauli-Z gate.
pub fn z_gate(qubit_index: usize) -> Self {
Gate::Operator(Box::new(Pauli::Z), vec![qubit_index], vec![])
}
/// Creates new Pauli-Z gates for the specified qubit indices.
///
/// # Arguments
///
/// * `qubit_indices` - The indices of the qubits on which the Pauli-Z gates act.
///
/// # Returns
///
/// * `Vec<Gate>` - A vector of Gate structs representing Pauli-Z gates for each qubit index.
pub fn z_multi_gate(qubit_indices: Vec<usize>) -> Vec<Self> {
qubit_indices
.into_iter()
.map(Gate::z_gate)
.collect()
}
/// Creates new controlled Pauli-Z gates for the specified qubit indices.
///
/// # Arguments
///
/// * `target_indices` - The indices of the target qubits.
///
/// * `control_indices` - The indices of the control qubits.
///
/// # Returns
///
/// * `Gates` - A vector of Gate structs representing controlled Pauli-Z gates for each target qubit index.
pub fn z_controlled_gates(
target_indices: Vec<usize>,
control_indices: Vec<usize>,
) -> Vec<Self> {
target_indices
.into_iter()
.map(|target_index| Gate::Operator(
Box::new(Pauli::Z),
vec![target_index],
control_indices.clone(),
))
.collect()
}
/// Creates a new Identity gate for the specified qubit index.
///
/// # Arguments
///
/// * `qubit_index` - The index of the qubit on which the Identity gate acts.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing an Identity gate.
pub fn i_gate(qubit_index: usize) -> Self {
Gate::Operator(Box::new(Identity), vec![qubit_index], vec![])
}
/// Creates new Identity gates for the specified qubit indices.
///
/// # Arguments
///
/// * `qubit_indices` - The indices of the qubits on which the Identity gates act.
///
/// # Returns
///
/// * `Vec<Gate>` - A vector of Gate structs representing Identity gates for each qubit index.
pub fn i_multi_gate(qubit_indices: Vec<usize>) -> Vec<Self> {
qubit_indices
.into_iter()
.map(Gate::i_gate)
.collect()
}
/// Creates new controlled Identity gates for the specified qubit indices.
///
/// # Arguments
///
/// * `target_indices` - The indices of the target qubits.
///
/// * `control_indices` - The indices of the control qubits.
///
/// # Returns
///
/// * `Gates` - A vector of Gate structs representing controlled Identity gates for each target qubit index.
pub fn i_controlled_gates(
target_indices: Vec<usize>,
control_indices: Vec<usize>,
) -> Vec<Self> {
target_indices
.into_iter()
.map(|target_index| Gate::Operator(
Box::new(Identity),
vec![target_index],
control_indices.clone(),
))
.collect()
}
/// Creates a new Phase-S gate for the specified qubit index.
///
/// # Arguments
///
/// * `qubit_index` - The index of the qubit on which the Phase-S gate acts.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a Phase-S gate.
pub fn s_gate(qubit_index: usize) -> Self {
Gate::Operator(Box::new(PhaseS), vec![qubit_index], vec![])
}
/// Creates new Phase-S gates for the specified qubit indices.
///
/// # Arguments
///
/// * `qubit_indices` - The indices of the qubits on which the Phase-S gates act.
///
/// # Returns
///
/// * `Vec<Gate>` - A vector of Gate structs representing Phase-S gates for each qubit index.
pub fn s_multi_gate(qubit_indices: Vec<usize>) -> Vec<Self> {
qubit_indices
.into_iter()
.map(Gate::s_gate)
.collect()
}
/// Creates new controlled Phase-S gates for the specified qubit indices.
///
/// # Arguments
///
/// * `target_indices` - The indices of the target qubits.
///
/// * `control_indices` - The indices of the control qubits.
///
/// # Returns
///
/// * `Gates` - A vector of Gate structs representing controlled Phase-S gates for each target qubit index.
pub fn s_controlled_gates(
target_indices: Vec<usize>,
control_indices: Vec<usize>,
) -> Vec<Self> {
target_indices
.into_iter()
.map(|target_index| Gate::Operator(
Box::new(PhaseS),
vec![target_index],
control_indices.clone(),
))
.collect()
}
/// Creates a new Phase-S dagger gate for the specified qubit index.
///
/// # Arguments
///
/// * `qubit_index` - The index of the qubit on which the Phase-S dagger gate acts.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a Phase-S dagger gate.
pub fn s_dag_gate(qubit_index: usize) -> Self {
Gate::Operator(Box::new(PhaseSdag), vec![qubit_index], vec![])
}
/// Creates new Phase-S dagger gates for the specified qubit indices.
///
/// # Arguments
///
/// * `qubit_indices` - The indices of the qubits on which the Phase-S dagger gates act.
///
/// # Returns
///
/// * `Vec<Gate>` - A vector of Gate structs representing Phase-S dagger gates for each qubit index.
pub fn s_dag_multi_gate(qubit_indices: Vec<usize>) -> Vec<Self> {
qubit_indices
.into_iter()
.map(Gate::s_dag_gate)
.collect()
}
/// Creates new controlled Phase-S dagger gates for the specified qubit indices.
///
/// # Arguments
///
/// * `target_indices` - The indices of the target qubits.
///
/// * `control_indices` - The indices of the control qubits.
///
/// # Returns
///
/// * `Gates` - A vector of Gate structs representing controlled Phase-S dagger gates for each target qubit index.
pub fn s_dag_controlled_gates(
target_indices: Vec<usize>,
control_indices: Vec<usize>,
) -> Vec<Self> {
target_indices
.into_iter()
.map(|target_index| Gate::Operator(
Box::new(PhaseSdag),
vec![target_index],
control_indices.clone(),
))
.collect()
}
/// Creates a new Phase-T gate for the specified qubit index.
///
/// # Arguments
///
/// * `qubit_index` - The index of the qubit on which the Phase-T gate acts.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a Phase-T gate.
pub fn t_gate(qubit_index: usize) -> Self {
Gate::Operator(Box::new(PhaseT), vec![qubit_index], vec![])
}
/// Creates new Phase-T gates for the specified qubit indices.
///
/// # Arguments
///
/// * `qubit_indices` - The indices of the qubits on which the Phase-T gates act.
///
/// # Returns
///
/// * `Vec<Gate>` - A vector of Gate structs representing Phase-T gates for each qubit index.
pub fn t_multi_gate(qubit_indices: Vec<usize>) -> Vec<Self> {
qubit_indices
.into_iter()
.map(Gate::t_gate)
.collect()
}
/// Creates new controlled Phase-T gates for the specified qubit indices.
///
/// # Arguments
///
/// * `target_indices` - The indices of the target qubits.
///
/// * `control_indices` - The indices of the control qubits.
///
/// # Returns
///
/// * `Gates` - A vector of Gate structs representing controlled Phase-T gates for each target qubit index.
pub fn t_controlled_gates(
target_indices: Vec<usize>,
control_indices: Vec<usize>,
) -> Vec<Self> {
target_indices
.into_iter()
.map(|target_index| Gate::Operator(
Box::new(PhaseT),
vec![target_index],
control_indices.clone(),
))
.collect()
}
/// Creates a new Phase-T dagger gate for the specified qubit index.
///
/// # Arguments
///
/// * `qubit_index` - The index of the qubit on which the Phase-T dagger gate acts.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a Phase-T dagger gate.
pub fn t_dag_gate(qubit_index: usize) -> Self {
Gate::Operator(Box::new(PhaseTdag), vec![qubit_index], vec![])
}
/// Creates new Phase-T dagger gates for the specified qubit indices.
///
/// # Arguments
///
/// * `qubit_indices` - The indices of the qubits on which the Phase-T dagger gates act.
///
/// # Returns
///
/// * `Vec<Gate>` - A vector of Gate structs representing Phase-T dagger gates for each qubit index.
pub fn t_dag_multi_gate(qubit_indices: Vec<usize>) -> Vec<Self> {
qubit_indices
.into_iter()
.map(Gate::t_dag_gate)
.collect()
}
/// Creates new controlled Phase-T dagger gates for the specified qubit indices.
///
/// # Arguments
///
/// * `target_indices` - The indices of the target qubits.
///
/// * `control_indices` - The indices of the control qubits.
///
/// # Returns
///
/// * `Gates` - A vector of Gate structs representing controlled Phase-T dagger gates for each target qubit index.
pub fn t_dag_controlled_gates(
target_indices: Vec<usize>,
control_indices: Vec<usize>,
) -> Vec<Self> {
target_indices
.into_iter()
.map(|target_index| Gate::Operator(
Box::new(PhaseTdag),
vec![target_index],
control_indices.clone(),
))
.collect()
}
/// Creates a new Phase Shift (P) gate for the specified qubit index and angle.
///
/// # Arguments
///
/// * `qubit_index` - The index of the qubit on which the Phase Shift gate acts.
/// * `angle` - The phase shift angle in radians.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a Phase Shift gate.
pub fn p_gate(qubit_index: usize, angle: f64) -> Self {
Gate::Operator(Box::new(PhaseShift::new(angle)), vec![qubit_index], vec![])
}
/// Creates new Phase Shift (P) gates for the specified qubit indices and angle.
///
/// # Arguments
///
/// * `qubit_indices` - The indices of the qubits on which the Phase Shift gates act.
/// * `angle` - The phase shift angle in radians for all gates.
///
/// # Returns
///
/// * `Vec<Gate>` - A vector of Gate structs representing Phase Shift gates for each qubit index.
pub fn p_multi_gate(qubit_indices: Vec<usize>, angle: f64) -> Vec<Self> {
let op_template = PhaseShift::new(angle);
qubit_indices
.into_iter()
.map(|qubit_index| Gate::Operator(Box::new(op_template), vec![qubit_index], vec![]))
.collect()
}
/// Creates new controlled Phase Shift (P) gates for the specified qubit indices and angle.
///
/// # Arguments
///
/// * `target_indices` - The indices of the target qubits.
/// * `control_indices` - The indices of the control qubits.
/// * `angle` - The phase shift angle in radians for all gates.
///
/// # Returns
///
/// * `Gates` - A vector of Gate structs representing controlled Phase Shift gates for each target qubit index.
pub fn p_controlled_gates(
target_indices: Vec<usize>,
control_indices: Vec<usize>,
angle: f64,
) -> Vec<Self> {
let op_template = PhaseShift::new(angle);
target_indices
.into_iter()
.map(|target_index| Gate::Operator(
Box::new(op_template),
vec![target_index],
control_indices.clone(),
))
.collect()
}
/// Creates a new RotateX (RX) gate for the specified qubit index and angle.
///
/// # Arguments
///
/// * `qubit_index` - The index of the qubit on which the RotateX gate acts.
/// * `angle` - The rotation angle in radians.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a RotateX gate.
pub fn rx_gate(qubit_index: usize, angle: f64) -> Self {
Gate::Operator(Box::new(RotateX::new(angle)), vec![qubit_index], vec![])
}
/// Creates new RotateX (RX) gates for the specified qubit indices and angle.
///
/// # Arguments
///
/// * `qubit_indices` - The indices of the qubits on which the RotateX gates act.
/// * `angle` - The rotation angle in radians for all gates.
///
/// # Returns
///
/// * `Vec<Gate>` - A vector of Gate structs representing RotateX gates for each qubit index.
pub fn rx_multi_gate(qubit_indices: Vec<usize>, angle: f64) -> Vec<Self> {
let op_template = RotateX::new(angle);
qubit_indices
.into_iter()
.map(|qubit_index| Gate::Operator(Box::new(op_template), vec![qubit_index], vec![]))
.collect()
}
/// Creates new controlled RotateX (RX) gates for the specified qubit indices and angle.
///
/// # Arguments
///
/// * `target_indices` - The indices of the target qubits.
/// * `control_indices` - The indices of the control qubits.
/// * `angle` - The rotation angle in radians for all gates.
///
/// # Returns
///
/// * `Gates` - A vector of Gate structs representing controlled RotateX gates for each target qubit index.
pub fn rx_controlled_gates(
target_indices: Vec<usize>,
control_indices: Vec<usize>,
angle: f64,
) -> Vec<Self> {
let op_template = RotateX::new(angle);
target_indices
.into_iter()
.map(|target_index| Gate::Operator(
Box::new(op_template),
vec![target_index],
control_indices.clone(),
))
.collect()
}
/// Creates a new RotateY (RY) gate for the specified qubit index and angle.
///
/// # Arguments
///
/// * `qubit_index` - The index of the qubit on which the RotateY gate acts.
/// * `angle` - The rotation angle in radians.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a RotateY gate.
pub fn ry_gate(qubit_index: usize, angle: f64) -> Self {
Gate::Operator(Box::new(RotateY::new(angle)), vec![qubit_index], vec![])
}
/// Creates new RotateY (RY) gates for the specified qubit indices and angle.
///
/// # Arguments
///
/// * `qubit_indices` - The indices of the qubits on which the RotateY gates act.
/// * `angle` - The rotation angle in radians for all gates.
///
/// # Returns
///
/// * `Vec<Gate>` - A vector of Gate structs representing RotateY gates for each qubit index.
pub fn ry_multi_gate(qubit_indices: Vec<usize>, angle: f64) -> Vec<Self> {
let op_template = RotateY::new(angle);
qubit_indices
.into_iter()
.map(|qubit_index| Gate::Operator(Box::new(op_template), vec![qubit_index], vec![]))
.collect()
}
/// Creates new controlled RotateY (RY) gates for the specified qubit indices and angle.
///
/// # Arguments
///
/// * `target_indices` - The indices of the target qubits.
/// * `control_indices` - The indices of the control qubits.
/// * `angle` - The rotation angle in radians for all gates.
///
/// # Returns
///
/// * `Gates` - A vector of Gate structs representing controlled RotateY gates for each target qubit index.
pub fn ry_controlled_gates(
target_indices: Vec<usize>,
control_indices: Vec<usize>,
angle: f64,
) -> Vec<Self> {
let op_template = RotateY::new(angle);
target_indices
.into_iter()
.map(|target_index| Gate::Operator(
Box::new(op_template),
vec![target_index],
control_indices.clone(),
))
.collect()
}
/// Creates a new RotateZ (RZ) gate for the specified qubit index and angle.
///
/// # Arguments
///
/// * `qubit_index` - The index of the qubit on which the RotateZ gate acts.
/// * `angle` - The rotation angle in radians.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a RotateZ gate.
pub fn rz_gate(qubit_index: usize, angle: f64) -> Self {
Gate::Operator(Box::new(RotateZ::new(angle)), vec![qubit_index], vec![])
}
/// Creates new RotateZ (RZ) gates for the specified qubit indices and angle.
///
/// # Arguments
///
/// * `qubit_indices` - The indices of the qubits on which the RotateZ gates act.
/// * `angle` - The rotation angle in radians for all gates.
///
/// # Returns
///
/// * `Vec<Gate>` - A vector of Gate structs representing RotateZ gates for each qubit index.
pub fn rz_multi_gate(qubit_indices: Vec<usize>, angle: f64) -> Vec<Self> {
let op_template = RotateZ::new(angle);
qubit_indices
.into_iter()
.map(|qubit_index| Gate::Operator(Box::new(op_template), vec![qubit_index], vec![]))
.collect()
}
/// Creates new controlled RotateZ (RZ) gates for the specified qubit indices and angle.
///
/// # Arguments
///
/// * `target_indices` - The indices of the target qubits.
/// * `control_indices` - The indices of the control qubits.
/// * `angle` - The rotation angle in radians for all gates.
///
/// # Returns
///
/// * `Gates` - A vector of Gate structs representing controlled RotateZ gates for each target qubit index.
pub fn rz_controlled_gates(
target_indices: Vec<usize>,
control_indices: Vec<usize>,
angle: f64,
) -> Vec<Self> {
let op_template = RotateZ::new(angle);
target_indices
.into_iter()
.map(|target_index| Gate::Operator(
Box::new(op_template),
vec![target_index],
control_indices.clone(),
))
.collect()
}
/// Creates a new Unitary2 gate for the specified qubit index and unitary matrix.
///
/// # Arguments
///
/// * `qubit_index` - The index of the qubit on which the Unitary2 gate acts.
/// * `unitary` - The unitary matrix to be applied.
///
/// # Returns
///
/// * `Result<Gate, Error>` - A Gate struct representing a Unitary2 gate if the unitary is valid, else an error.
pub fn unitary2_gate(qubit_index: usize, unitary: [[Complex<f64>; 2]; 2]) -> Result<Self, Error> {
Ok(Gate::Operator(
Box::new(Unitary2::new(unitary)?),
vec![qubit_index],
vec![],
))
}
/// Creates new Unitary2 gates for the specified qubit indices and unitary matrix.
///
/// # Arguments
///
/// * `qubit_indices` - The indices of the qubits on which the Unitary2 gates act.
///
/// * `unitary` - The unitary matrix to be applied.
///
/// # Returns
///
/// * `Result<Vec<Gate>, Error>` - A vector of Gate structs representing Unitary2 gates for each qubit index if the unitary is valid,, else an error.
pub fn unitary2_multi_gate(
qubit_indices: Vec<usize>,
unitary: [[Complex<f64>; 2]; 2],
) -> Result<Vec<Self>, Error> {
let op_template = Unitary2::new(unitary)?;
let gates = qubit_indices
.into_iter()
.map(|qubit_index| Gate::Operator(Box::new(op_template), vec![qubit_index], vec![]))
.collect();
Ok(gates)
}
/// Creates new controlled Unitary2 gates for the specified qubit indices and unitary matrix.
///
/// # Arguments
///
/// * `target_indices` - The indices of the target qubits.
///
/// * `control_indices` - The indices of the control qubits.
///
/// * `unitary` - The unitary matrix to be applied.
///
/// # Returns
///
/// * `Result<Vec<Gate>, Error>` - A vector of Gate structs representing controlled Unitary2 gates for each target qubit index if the unitary is valid, else an error.
pub fn unitary2_controlled_gates(
target_indices: Vec<usize>,
control_indices: Vec<usize>,
unitary: [[Complex<f64>; 2]; 2],
) -> Result<Vec<Self>, Error> {
let op_template = Unitary2::new(unitary)?;
let gates = target_indices
.into_iter()
.map(|target_index| Gate::Operator(
Box::new(op_template),
vec![target_index],
control_indices.clone(),
))
.collect();
Ok(gates)
}
/// Creates a new Unitary2 gate for the specified qubit index and unitary matrix using a rotation angle and phase shift.
/// Unlike custom Unitary2 gates, the generated unitary matrix is guaranteed to be valid.
/// Therefore, this method does not return an error.
///
/// # Arguments
///
/// * qubit_index - The index of the qubit on which the Unitary2 gate acts.
///
/// * theta - The rotation angle in radians.
///
/// * phi - The phase shift in radians.
///
/// # Returns
///
/// * Gate - A new instance of the Gate struct representing a Unitary2 gate.
pub fn ry_phase_gate(
qubit_index: usize,
theta: f64,
phi: f64,
) -> Self {
Gate::Operator(
Box::new(Unitary2::from_ry_phase(theta, phi)),
vec![qubit_index],
vec![],
)
}
/// Creates new Unitary2 gates for the specified qubit indices and unitary matrix using a rotation angle and phase shift.
/// Unlike custom Unitary2 gates, the generated unitary matrix is guaranteed to be valid.
/// Therefore, this method does not return an error.
///
/// # Arguments
///
/// * qubit_indices - The indices of the qubits on which the Unitary2 gates act.
///
/// * theta - The rotation angle in radians for all gates.
///
/// * phi - The phase shift in radians for all gates.
///
/// # Returns
///
/// * `Vec<Gate>` - A vector of Gate structs representing Unitary2 gates for each qubit index.
pub fn ry_phase_multi_gate(
qubit_indices: Vec<usize>,
theta: f64,
phi: f64,
) -> Vec<Self> {
let op_template = Unitary2::from_ry_phase(theta, phi);
qubit_indices
.into_iter()
.map(|qubit_index| Gate::Operator(Box::new(op_template), vec![qubit_index], vec![]))
.collect()
}
/// Creates new controlled Unitary2 gates for the specified qubit indices and unitary matrix using a rotation angle and phase shift.
///
/// # Arguments
///
/// * target_indices - The indices of the target qubits.
///
/// * control_indices - The indices of the control qubits.
///
/// * theta - The rotation angle in radians for all gates.
///
/// * phi - The phase shift in radians for all gates.
///
/// # Returns
///
/// * `Vec<Gate>` - A vector of Gate structs representing controlled Unitary2 gates for each target qubit index.
pub fn ry_phase_controlled_gates(
target_indices: Vec<usize>,
control_indices: Vec<usize>,
theta: f64,
phi: f64,
) -> Vec<Self> {
let op_template = Unitary2::from_ry_phase(theta, phi);
target_indices
.into_iter()
.map(|target_index| {
Gate::Operator(
Box::new(op_template),
vec![target_index],
control_indices.clone(),
)
})
.collect()
}
/// Creates a new Unitary2 gate from a rotation angle theta and phase shift angle phi.
///
/// # Arguments
///
/// * `qubit_index` - The index of the qubit on which the Unitary2 gate acts.
/// * `theta` - The rotation angle in radians.
/// * `phi` - The phase shift angle in radians.
///
/// # Returns
///
/// * Gate - A new instance of the Gate struct representing a Unitary2 gate.
pub fn ry_phase_dag_gate(
qubit_index: usize,
theta: f64,
phi: f64,
) -> Self {
Gate::Operator(
Box::new(Unitary2::from_ry_phase_dagger(theta, phi)),
vec![qubit_index],
vec![],
)
}
/// Creates new Unitary2 gates from a rotation angle theta and phase shift angle phi.
///
/// # Arguments
///
/// * `qubit_indices` - The indices of the qubits on which the Unitary2 gates act.
/// * `theta` - The rotation angle in radians.
/// * `phi` - The phase shift angle in radians.
///
// # Returns
///
/// * `Vec<Gate>` - A vector of Gate structs representing Unitary2 gates for each qubit index.
pub fn ry_phase_dag_multi_gate(
qubit_indices: Vec<usize>,
theta: f64,
phi: f64,
) -> Vec<Self> {
let op_template = Unitary2::from_ry_phase_dagger(theta, phi);
qubit_indices
.into_iter()
.map(|qubit_index| {
Gate::Operator(Box::new(op_template), vec![qubit_index], vec![])
})
.collect()
}
/// Creates new controlled Unitary2 gates from a rotation angle theta and phase shift angle phi.
///
/// # Arguments
///
/// * `target_indices` - The indices of the target qubits.
/// * `control_indices` - The indices of the control qubits.
/// * `theta` - The rotation angle in radians.
/// * `phi` - The phase shift angle in radians.
///
/// # Returns
///
/// * `Vec<Gate>` - A vector of Gate structs representing controlled Unitary2 gates for each target qubit index.
pub fn ry_phase_dag_controlled_gates(
target_indices: Vec<usize>,
control_indices: Vec<usize>,
theta: f64,
phi: f64,
) -> Vec<Self> {
let op_template = Unitary2::from_ry_phase_dagger(theta, phi);
target_indices
.into_iter()
.map(|target_index| {
Gate::Operator(
Box::new(op_template),
vec![target_index],
control_indices.clone(),
)
})
.collect()
}
// -- MULTI-QUBIT GATES --
/// Creates a CNOT gate for the specified target and control qubit indices.
///
/// # Arguments
///
/// * `target_index` - The index of the target qubit.
///
/// * `control_index` - The index of the control qubit.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a CNOT gate.
pub fn cnot_gate(target_index: usize, control_index: usize) -> Self {
Gate::Operator(
Box::new(CNOT),
vec![target_index],
vec![control_index],
)
}
/// Creates a new SWAP gate for the specified qubit index.
///
/// # Arguments
///
/// * `qubit1` - The index of the first qubit.
/// * `qubit2` - The index of the second qubit.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a SWAP gate.
pub fn swap_gate(qubit1_index: usize, qubit2_index: usize) -> Self {
Gate::Operator(Box::new(SWAP), vec![qubit1_index, qubit2_index], vec![])
}
/// Creates a new controlled SWAP gate for the specified target and control qubit indices.
///
/// # Arguments
///
/// * `target_indices` - The indices of the target qubits.
/// * `control_indices` - The indices of the control qubits.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a controlled SWAP gate.
pub fn swap_controlled_gate(
target_indices: Vec<usize>,
control_indices: Vec<usize>,
) -> Self {
Gate::Operator(Box::new(SWAP), target_indices, control_indices)
}
/// Creates a new Toffoli gate for the specified target and control qubit indices.
///
/// # Arguments
///
/// * `target_index` - The index of the target qubit.
/// * `control_indices` - The indices of the control qubits.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a Toffoli gate.
pub fn toffoli_gate(target_index: usize, control_indices: Vec<usize>) -> Self {
Gate::Operator(Box::new(Toffoli), vec![target_index], control_indices)
}
/// Creates a new PauliString gate with the specified Pauli String.
///
/// # Arguments
///
/// * `pauli_string` - The Pauli string to be represented by the gate.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a PauliString gate.
pub fn pauli_string_gate(pauli_string: PauliString) -> Self {
Gate::PauliString(pauli_string)
}
/// Creates a new Pauli time evolution gate with the specified Pauli String and time.
///
/// # Arguments
///
/// * `pauli_string` - The Pauli string to be represented by the gate.
/// * `time` - The time parameter for the evolution.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a Pauli time evolution gate.
pub fn pauli_time_evolution_gate(pauli_string: PauliString, time: f64) -> Self {
Gate::PauliTimeEvolution(pauli_string, time)
}
/// Creates a new Matchgate with the specified qubit index and its adjacent as targets.
///
/// # Arguments
///
/// * `target_index` - The index of the first target qubit. The second target qubit is assumed to be the next qubit.
/// * `theta` - The angle of rotation in radians.
/// * `phi1` - The first phase shift in radians.
/// * `phi2` - The second phase shift in radians.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a Matchgate.
///
/// # Warning
///
/// This gate is not yet compilable to OpenQASM, since it requires advanced decomposition techniques.
pub fn matchgate(
target_index: usize,
theta: f64,
phi1: f64,
phi2: f64,
) -> Self {
Gate::Operator(
Box::new(Matchgate::new(theta, phi1, phi2)),
vec![target_index],
vec![],
)
}
/// Creates a new controlled Matchgate with the specified qubit index and its adjacent as target qubits.
///
/// # Arguments
///
/// * `target_index` - The index of the first target qubit. The second target qubit is assumed to be the next qubit.
/// * `control_indices` - The indices of the control qubits.
/// * `theta` - The angle of rotation in radians.
/// * `phi1` - The first phase shift in radians.
/// * `phi2` - The second phase shift in radians.
///
/// # Returns
///
/// * `Gate` - A new instance of the Gate struct representing a controlled Matchgate.
///
/// # Warning
///
/// This gate is not yet compilable to OpenQASM, since it requires advanced decomposition techniques.
pub fn controlled_matchgate(
target_index: usize,
control_indices: Vec<usize>,
theta: f64,
phi1: f64,
phi2: f64,
) -> Self {
Gate::Operator(
Box::new(Matchgate::new(theta, phi1, phi2)),
vec![target_index],
control_indices,
)
}
}