tket 0.18.0

Quantinuum's TKET Quantum Compiler
Documentation
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
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
//! General tests.

use std::collections::{HashMap, HashSet};
use std::io::BufReader;

use cool_asserts::assert_matches;
use hugr::builder::{
    Container, Dataflow, DataflowHugr, DataflowSubContainer, FunctionBuilder, HugrBuilder,
    ModuleBuilder, SubContainer,
};
use hugr::extension::prelude::{UnwrapBuilder, bool_t, option_type, qb_t};
use hugr::std_extensions::arithmetic::float_types::{ConstF64, float64_type};
use rayon::iter::ParallelIterator;
use std::sync::Arc;

use super::TKETDecode;
use crate::TketOp;
use crate::extension::TKET1_EXTENSION_ID;
use crate::extension::bool::{BoolOp, ConstBool, bool_type};
use crate::extension::rotation::{ConstRotation, RotationOp, rotation_type};
use crate::extension::sympy::SympyOpDef;
use crate::metadata;
use crate::serialize::pytket::PytketEncodeError;
use crate::serialize::pytket::extension::{CoreDecoder, OpaqueTk1Op, PreludeEmitter};
use crate::serialize::pytket::{
    DecodeInsertionTarget, DecodeOptions, EncodeOptions, EncodedCircuit, PytketDecodeError,
    PytketDecodeErrorInner, PytketDecoderConfig, PytketEncodeOpError, PytketEncoderConfig,
    default_decoder_config, default_encoder_config,
};
use hugr::hugr::hugrmut::HugrMut;
use hugr::ops::handle::FuncID;
use hugr::ops::{OpParent, OpType, Value};
use hugr::std_extensions::arithmetic::float_ops::FloatOps;
use hugr::types::{Signature, SumType};
use hugr::{Hugr, HugrView};
use itertools::Itertools;
use rstest::{fixture, rstest};
use tket_json_rs::circuit_json::{self, SerialCircuit};
use tket_json_rs::optype;
use tket_json_rs::register;
use tket_json_rs::register::{ElementId, Qubit};

const EMPTY_CIRCUIT: &str = r#"{
        "phase": "0",
        "bits": [["c", [0]]],
        "qubits": [["q", [0]], ["q", [1]]],
        "commands": [],
        "implicit_permutation": [[["q", [0]], ["q", [0]]], [["q", [1]], ["q", [1]]]]
    }"#;

const SIMPLE_JSON: &str = r#"{
        "phase": "0",
        "bits": [],
        "qubits": [["q", [0]], ["q", [1]]],
        "commands": [
            {"args": [["q", [0]]], "op": {"type": "H"}},
            {"args": [["q", [0]], ["q", [1]]], "op": {"type": "CX"}}
        ],
        "implicit_permutation": [[["q", [0]], ["q", [0]]], [["q", [1]], ["q", [1]]]]
    }"#;

const SIMPLE_MEASURE: &str = r#"{
        "phase": "0.0",
        "bits": [["c", [0]], ["c", [1]]],
        "qubits": [["q", [0]], ["q", [1]]],
        "commands": [
            {"args": [["q", [0]]], "op": {"type": "H"}},
            {"args": [["q", [0]], ["q", [1]]], "op": {"type": "CX"}},
            {"args": [["q", [0]], ["c", [0]]], "op": {"type": "Measure"}},
            {"args": [["q", [1]], ["c", [1]]], "op": {"type": "Measure"}}
        ],
        "created_qubits": [],
        "discarded_qubits": [],
        "implicit_permutation": [[["q", [0]], ["q", [0]]], [["q", [1]], ["q", [1]]]]
    }"#;

const MULTI_REGISTER: &str = r#"{
        "phase": "0",
        "bits": [],
        "qubits": [["q", [2]], ["q", [1]], ["my_qubits", [2]]],
        "commands": [
            {"args": [["my_qubits", [2]]], "op": {"type": "H"}},
            {"args": [["q", [2]], ["q", [1]]], "op": {"type": "CX"}}
        ],
        "implicit_permutation": []
    }"#;

const UNKNOWN_OP: &str = r#"{
        "phase": "1/2",
        "bits": [["c", [0]], ["c", [1]]],
        "qubits": [["q", [0]], ["q", [1]], ["q", [2]]],
        "commands": [
            {"args": [["q", [0]], ["q", [1]], ["q", [2]]], "op": {"type": "CSWAP"}},
            {"args": [["q", [1]], ["c", [1]]], "op": {"type": "Measure"}}
        ],
        "created_qubits": [],
        "discarded_qubits": [],
        "implicit_permutation": [[["q", [0]], ["q", [0]]], [["q", [1]], ["q", [1]]], [["q", [2]], ["q", [2]]]]
    }"#;

const SMALL_PARAMETERIZED: &str = r#"{
        "phase": "0.0",
        "bits": [],
        "qubits": [["q", [0]]],
        "commands": [
            {"args":[["q",[0]]],"op":{"params":["(pi) / (2)"],"type":"Rz"}}
        ],
        "created_qubits": [],
        "discarded_qubits": [],
        "implicit_permutation": [[["q", [0]], ["q", [0]]]]
    }"#;

const PARAMETERIZED: &str = r#"{
        "phase": "0.0",
        "bits": [],
        "qubits": [["q", [0]], ["q", [1]]],
        "commands": [
            {"args":[["q",[0]]],"op":{"type":"H"}},
            {"args":[["q",[1]],["q",[0]]],"op":{"type":"CX"}},
            {"args":[["q",[0]]],"op":{"params":["((pi) / (2)) / (pi)"],"type":"Rz"}},
            {"args": [["q", [0]]], "op": {"params": ["(3.141596) / (pi)", "alpha", "((pi) / (4)) / (pi)"], "type": "TK1"}}
        ],
        "created_qubits": [],
        "discarded_qubits": [],
        "implicit_permutation": [[["q", [0]], ["q", [0]]], [["q", [1]], ["q", [1]]]]
    }"#;

const BARRIER: &str = r#"{
        "phase": "0.0",
        "bits": [["c", [0]], ["c", [1]]],
        "qubits": [["q", [0]], ["q", [1]], ["q", [2]]],
        "commands": [
            {"args": [["q", [0]], ["q", [1]]], "op": {"type": "CX"}},
            {"args": [["q", [1]], ["q", [2]]], "op": {"type": "Barrier", "data": "Something invalid"}},
            {"args": [["q", [2]], ["c", [1]]], "op": {"type": "Measure"}}
        ],
        "created_qubits": [],
        "discarded_qubits": [],
        "implicit_permutation": [[["q", [0]], ["q", [0]]], [["q", [1]], ["q", [1]]], [["q", [2]], ["q", [2]]]]
    }"#;

const IMPLICIT_PERMUTATION: &str = r#"{
        "phase": "0.0",
        "bits": [["c", [0]], ["c", [1]]],
        "qubits": [["q", [0]], ["q", [1]], ["q", [2]]],
        "commands": [
            {"args": [["q", [0]], ["q", [1]]], "op": {"type": "CX"}}
        ],
        "created_qubits": [],
        "discarded_qubits": [],
        "implicit_permutation": [[["q", [0]], ["q", [1]]], [["q", [1]], ["q", [2]]], [["q", [2]], ["q", [0]]]]
    }"#;

/// Check some properties of the serial circuit.
fn validate_serial_circ(circ: &SerialCircuit) {
    // Check that all commands have valid arguments.
    for command in &circ.commands {
        for arg in &command.args {
            assert!(
                circ.qubits.contains(&register::Qubit::from(arg.clone()))
                    || circ.bits.contains(&register::Bit::from(arg.clone())),
                "Circuit command {command:?} has an invalid argument '{arg:?}'"
            );
        }
    }

    // Check that the implicit permutation is valid.
    let perm: HashMap<register::ElementId, register::ElementId> = circ
        .implicit_permutation
        .iter()
        .map(|p| (p.0.clone().id, p.1.clone().id))
        .collect();
    for (key, value) in &perm {
        let valid_qubits = circ.qubits.contains(&register::Qubit::from(key.clone()))
            && circ.qubits.contains(&register::Qubit::from(value.clone()));
        let valid_bits = circ.bits.contains(&register::Bit::from(key.clone()))
            && circ.bits.contains(&register::Bit::from(value.clone()));
        assert!(
            valid_qubits || valid_bits,
            "Circuit has an invalid permutation '{key:?} -> {value:?}'"
        );
    }
    assert_eq!(
        perm.len(),
        circ.implicit_permutation.len(),
        "Circuit has duplicate permutations",
    );
    assert_eq!(
        HashSet::<&register::ElementId>::from_iter(perm.values()).len(),
        perm.len(),
        "Circuit has duplicate values in permutations"
    );
}

fn compare_serial_circs(a: &SerialCircuit, b: &SerialCircuit) {
    assert_eq!(a.name, b.name);
    assert_eq!(a.phase, b.phase);
    assert_eq!(&a.qubits, &b.qubits);
    assert_eq!(a.commands.len(), b.commands.len());

    // Allow additional bit ids after a roundtrip, as the encoder may freely
    // allocate new IDs instead of reusing old ones.
    let bits_a: HashSet<_> = a.bits.iter().collect();
    let bits_b: HashSet<_> = b.bits.iter().collect();
    assert!(
        bits_b.is_superset(&bits_a),
        "Some bit IDs in original circuit are missing the roundtrip. Original: [{}], Roundtrip: [{}]",
        bits_a.iter().join(", "),
        bits_b.iter().join(", "),
    );

    // We ignore the commands order here, as two encodings may swap
    // non-dependant operations.
    //
    // The correct thing here would be to run a deterministic toposort and
    // compare the commands in that order. This is just a quick check that
    // everything is present, ignoring wire dependencies.
    //
    // Another problem is that `Command`s cannot be compared directly;
    // - `command.op.signature`, and `n_qb` are optional and sometimes
    //      unset in pytket-generated circs.
    // - qubit arguments names may differ if they have been allocated inside the circuit,
    //      as they depend on the traversal argument. Same with classical params.
    // Here we define an ad-hoc subset that can be compared.
    //
    // TODO: Do a proper comparison independent of the toposort ordering, and
    // track register reordering.
    #[derive(PartialEq, Eq, Hash, Debug)]
    struct CommandInfo {
        op_type: tket_json_rs::OpType,
        params: Vec<String>,
        n_args: usize,
    }

    impl From<&tket_json_rs::circuit_json::Command> for CommandInfo {
        fn from(command: &tket_json_rs::circuit_json::Command) -> Self {
            CommandInfo {
                op_type: command.op.op_type,
                params: command.op.params.clone().unwrap_or_default(),
                n_args: command.args.len(),
            }
        }
    }

    let a_command_count: HashMap<CommandInfo, usize> = a.commands.iter().map_into().counts();
    let b_command_count: HashMap<CommandInfo, usize> = b.commands.iter().map_into().counts();
    for (a, &count_a) in &a_command_count {
        let count_b = b_command_count.get(a).copied().unwrap_or_default();
        assert_eq!(
            count_a, count_b,
            "command {a:?} appears {count_a} times in rhs and {count_b} times in lhs.\ncounts for a: {a_command_count:#?}\ncounts for b: {b_command_count:#?}"
        );
    }
    assert_eq!(a_command_count.len(), b_command_count.len());
}

/// A simple circuit with some preset qubit registers
#[fixture]
fn circ_preset_qubits() -> Hugr {
    let input_t = vec![qb_t()];
    let output_t = vec![qb_t(), qb_t()];
    let mut h = FunctionBuilder::new("preset_qubits", Signature::new(input_t, output_t)).unwrap();

    let [qb0] = h.input_wires_arr();
    let [qb1] = h.add_dataflow_op(TketOp::QAlloc, []).unwrap().outputs_arr();

    let [qb0, qb1] = h
        .add_dataflow_op(TketOp::CZ, [qb0, qb1])
        .unwrap()
        .outputs_arr();

    let mut hugr = h.finish_hugr_with_outputs([qb0, qb1]).unwrap();

    // A preset register for the first qubit output
    hugr.set_metadata::<metadata::QubitRegisters>(
        hugr.entrypoint(),
        vec![
            ElementId(String::from("q"), vec![2]),
            ElementId(String::from("q"), vec![10]),
            ElementId(String::from("q"), vec![8]),
        ]
        .into_iter()
        .map(Qubit::from)
        .collect_vec(),
    );

    hugr
}

/// A simple circuit with some preset input and output bit registers,
/// including multiple outputs of the same register.
#[fixture]
fn circ_preset_bits() -> Hugr {
    let input_t = vec![bool_type()];
    let output_t = vec![bool_type(), bool_type(), bool_type()];
    let mut h = FunctionBuilder::new("preset_bits", Signature::new(input_t, output_t)).unwrap();

    let [b0] = h.input_wires_arr();
    let b1 = h.add_load_value(ConstBool::new(false));
    let [b_and] = h
        .add_dataflow_op(BoolOp::and, [b0, b1])
        .unwrap()
        .outputs_arr();

    let mut hugr = h.finish_hugr_with_outputs([b0, b_and, b0]).unwrap();

    // A preset register for the first qubit output
    hugr.set_metadata::<metadata::BitRegisters>(
        hugr.entrypoint(),
        vec![ElementId(String::from("b"), vec![1])]
            .into_iter()
            .map(register::Bit::from)
            .collect_vec(),
    );

    hugr
}

/// A simple circuit with some input parameters
#[fixture]
fn circ_parameterized() -> Hugr {
    let input_t = vec![qb_t(), rotation_type(), rotation_type(), rotation_type()];
    let output_t = vec![qb_t()];
    let mut h = FunctionBuilder::new("parameterized", Signature::new(input_t, output_t)).unwrap();

    let [q, r0, r1, r2] = h.input_wires_arr();

    let [q] = h
        .add_dataflow_op(TketOp::Rx, [q, r0])
        .unwrap()
        .outputs_arr();
    let [q] = h
        .add_dataflow_op(TketOp::Ry, [q, r1])
        .unwrap()
        .outputs_arr();
    let [q] = h
        .add_dataflow_op(TketOp::Rz, [q, r2])
        .unwrap()
        .outputs_arr();

    let mut hugr = h.finish_hugr_with_outputs([q]).unwrap();

    // Preset names for some of the inputs
    hugr.set_metadata::<metadata::InputParameters>(
        hugr.entrypoint(),
        vec!["alpha".to_string(), "beta".to_string()],
    );

    hugr
}

/// A circuit with a TK1 opaque operation.
#[fixture]
fn circ_tk1_ops() -> Hugr {
    let input_t = vec![qb_t(), qb_t()];
    let output_t = vec![qb_t(), qb_t()];
    let mut h = FunctionBuilder::new("tk1_ops", Signature::new(input_t, output_t)).unwrap();

    let [q1, q2] = h.input_wires_arr();

    // An unsupported tk1-only operation.
    let mut tk1op = tket_json_rs::circuit_json::Operation::default();
    tk1op.op_type = tket_json_rs::optype::OpType::CH;
    tk1op.n_qb = Some(2);
    let op: OpType = OpaqueTk1Op::new_from_op(&tk1op, 2, 0)
        .as_extension_op()
        .into();
    let [q1, q2] = h.add_dataflow_op(op, [q1, q2]).unwrap().outputs_arr();

    h.finish_hugr_with_outputs([q1, q2]).unwrap()
}

/// A circuit with a non-flat unsupported subgraph.
///
/// Tries to allocate a qubit, and panics if it fails.
/// This creates an unsupported conditional inside the region.
#[fixture]
fn circ_unsupported_subtree() -> Hugr {
    let input_t = vec![];
    let output_t = vec![qb_t()];
    let mut h =
        FunctionBuilder::new("unsupported_subtree", Signature::new(input_t, output_t)).unwrap();

    let [maybe_q] = h
        .add_dataflow_op(TketOp::TryQAlloc, [])
        .unwrap()
        .outputs_arr();
    let [q] = h
        .build_unwrap_sum(1, option_type([qb_t()]), maybe_q)
        .unwrap();

    h.finish_hugr_with_outputs([q]).unwrap()
}

/// A circuit with a recursive function call.
#[fixture]
fn circ_recursive() -> Hugr {
    let input_t = vec![qb_t()];
    let output_t = vec![qb_t()];
    let mut h = FunctionBuilder::new("recursive", Signature::new(input_t, output_t)).unwrap();
    let func: FuncID<true> = h.container_node().into();

    let [q] = h.input_wires_arr();
    let [q] = h.call(&func, &[], [q]).unwrap().outputs_arr();
    h.finish_hugr_with_outputs([q]).unwrap()
}

/// A circuit with global constant definitions.
#[fixture]
fn circ_global_defs() -> Hugr {
    let input_t = vec![qb_t()];
    let output_t = vec![qb_t()];
    let mut h = FunctionBuilder::new(
        "global_param",
        Signature::new(input_t.clone(), output_t.clone()),
    )
    .unwrap();

    let (rot_const, func_decl) = {
        let mut module = h.module_root_builder();
        let rot_const = module.add_constant(Value::from(ConstRotation::new(0.2).unwrap()));
        let func_decl = module
            .declare("func", Signature::new(input_t, output_t).into())
            .unwrap();
        (rot_const, func_decl)
    };

    let [q] = h.input_wires_arr();
    let rot = h.load_const(&rot_const);
    let [q] = h
        .add_dataflow_op(TketOp::Rx, [q, rot])
        .unwrap()
        .outputs_arr();
    let [q] = h.call(&func_decl, &[], [q]).unwrap().outputs_arr();
    h.finish_hugr_with_outputs([q]).unwrap()
}

/// A circuit with non-local dataflow edges.
#[fixture]
fn circ_non_local() -> Hugr {
    let input_t = vec![qb_t(), rotation_type()];
    let inner_input_t = vec![qb_t()];
    let output_t = vec![qb_t()];
    let mut h =
        FunctionBuilder::new("non_local", Signature::new(input_t, output_t.clone())).unwrap();

    let [q, rot] = h.input_wires_arr();
    let [q] = {
        let mut dfg = h
            .dfg_builder(Signature::new(inner_input_t, output_t), [q])
            .unwrap();
        // Rx with non-local input
        let [q] = dfg.input_wires_arr();
        let [q] = dfg
            .add_dataflow_op(TketOp::Rx, [q, rot])
            .unwrap()
            .outputs_arr();
        dfg.set_outputs([q]).unwrap();
        dfg.finish_sub_container().unwrap()
    }
    .outputs_arr();
    h.finish_hugr_with_outputs([q]).unwrap()
}

/// A simple circuit with ancillae
#[fixture]
fn circ_measure_ancilla() -> Hugr {
    let input_t = vec![qb_t()];
    let output_t = vec![bool_t(), bool_t()];
    let mut h = FunctionBuilder::new("meas_ancilla", Signature::new(input_t, output_t)).unwrap();

    let [qb] = h.input_wires_arr();
    let [anc] = h.add_dataflow_op(TketOp::QAlloc, []).unwrap().outputs_arr();

    let [qb, meas_qb] = h
        .add_dataflow_op(TketOp::Measure, [qb])
        .unwrap()
        .outputs_arr();
    let [anc, meas_anc] = h
        .add_dataflow_op(TketOp::Measure, [anc])
        .unwrap()
        .outputs_arr();

    let [] = h
        .add_dataflow_op(TketOp::QFree, [qb])
        .unwrap()
        .outputs_arr();
    let [] = h
        .add_dataflow_op(TketOp::QFree, [anc])
        .unwrap()
        .outputs_arr();

    h.finish_hugr_with_outputs([meas_qb, meas_anc]).unwrap()
}

#[fixture]
fn circ_add_angles_symbolic() -> (Hugr, String) {
    let input_t = vec![qb_t(), rotation_type(), rotation_type()];
    let output_t = vec![qb_t()];
    let mut h =
        FunctionBuilder::new("add_angles_symbolic", Signature::new(input_t, output_t)).unwrap();

    let [qb, f1, f2] = h.input_wires_arr();
    let [f12] = h
        .add_dataflow_op(RotationOp::radd, [f1, f2])
        .unwrap()
        .outputs_arr();
    let [qb] = h
        .add_dataflow_op(TketOp::Rx, [qb, f12])
        .unwrap()
        .outputs_arr();

    let circ = h.finish_hugr_with_outputs([qb]).unwrap();
    (circ, "(f0) + (f1)".to_string())
}

#[fixture]
fn circ_add_angles_constants() -> (Hugr, String) {
    let qb_row = vec![qb_t()];
    let mut h = FunctionBuilder::new(
        "add_angles_constants",
        Signature::new(qb_row.clone(), qb_row),
    )
    .unwrap();

    let qb = h.input_wires().next().unwrap();

    let point2 = h.add_load_value(ConstRotation::new(0.2).unwrap());
    let point3 = h.add_load_value(ConstRotation::new(0.3).unwrap());
    let point5 = h
        .add_dataflow_op(RotationOp::radd, [point2, point3])
        .unwrap()
        .out_wire(0);

    let qbs = h
        .add_dataflow_op(TketOp::Rx, [qb, point5])
        .unwrap()
        .outputs();
    let circ = h.finish_hugr_with_outputs(qbs).unwrap();
    (circ, "(0.2) + (0.3)".to_string())
}

#[fixture]
/// An Rx operation using some complex ops to compute its angle.
fn circ_complex_angle_computation() -> (Hugr, String) {
    let input_t = vec![qb_t(), rotation_type(), rotation_type()];
    let output_t = vec![qb_t()];
    let mut h = FunctionBuilder::new(
        "complex_angle_computation",
        Signature::new(input_t, output_t),
    )
    .unwrap();

    let [qb, r0, r1] = h.input_wires_arr();

    // Loading rotations and sympy expressions
    let point2 = h.add_load_value(ConstRotation::new(0.2).unwrap());
    let sympy = h
        .add_dataflow_op(SympyOpDef.with_expr("cos(pi)".to_string()), [])
        .unwrap()
        .out_wire(0);
    let added_rot = h
        .add_dataflow_op(RotationOp::radd, [sympy, point2])
        .unwrap()
        .out_wire(0);

    // Float operations and conversions
    let f0 = h
        .add_dataflow_op(RotationOp::to_halfturns, [r0])
        .unwrap()
        .out_wire(0);
    let f1 = h
        .add_dataflow_op(RotationOp::to_halfturns, [r1])
        .unwrap()
        .out_wire(0);
    let fpow = h
        .add_dataflow_op(FloatOps::fpow, [f0, f1])
        .unwrap()
        .out_wire(0);
    let rpow = h
        .add_dataflow_op(RotationOp::from_halfturns_unchecked, [fpow])
        .unwrap()
        .out_wire(0);

    let final_rot = h
        .add_dataflow_op(RotationOp::radd, [rpow, added_rot])
        .unwrap()
        .out_wire(0);

    let qbs = h
        .add_dataflow_op(TketOp::Rx, [qb, final_rot])
        .unwrap()
        .outputs();

    let circ = h.finish_hugr_with_outputs(qbs).unwrap();
    (circ, "((f0) ** (f1)) + ((cos(pi)) + (0.2))".to_string())
}

/// A circuit with a nested DFG block.
#[fixture]
fn circ_nested_dfgs() -> Hugr {
    let input_t = vec![qb_t()];
    let output_t = vec![bool_t()];
    let mut h =
        FunctionBuilder::new("nested_dfgs", Signature::new(input_t, output_t.clone())).unwrap();

    let [qb] = h.input_wires_arr();
    let rot = h.add_load_value(ConstRotation::new(0.5).unwrap());

    let inner_dfg = {
        let mut inner_dfg = h
            .dfg_builder(
                Signature::new(vec![qb_t(), rotation_type()], output_t),
                [qb, rot],
            )
            .unwrap();
        let [qb, rot] = inner_dfg.input_wires_arr();

        let [qb] = inner_dfg
            .add_dataflow_op(TketOp::Rx, [qb, rot])
            .unwrap()
            .outputs_arr();
        let [bool] = inner_dfg
            .add_dataflow_op(TketOp::MeasureFree, [qb])
            .unwrap()
            .outputs_arr();
        let [bool] = inner_dfg
            .add_dataflow_op(BoolOp::read, [bool])
            .unwrap()
            .outputs_arr();

        inner_dfg.finish_with_outputs([bool]).unwrap()
    };
    let [bool] = inner_dfg.outputs_arr();

    h.finish_hugr_with_outputs([bool]).unwrap()
}

// A circuit with some simple circuit and an unsupported subgraph that does not interact with it.
#[fixture]
fn circ_independent_subgraph() -> Hugr {
    let input_t = vec![qb_t(), qb_t(), option_type([bool_t()]).into()];
    let output_t = vec![qb_t(), qb_t(), bool_t()];
    let mut h =
        FunctionBuilder::new("independent_subgraph", Signature::new(input_t, output_t)).unwrap();

    let [q1, q2, maybe_b] = h.input_wires_arr();

    let [q1, q2] = h
        .add_dataflow_op(TketOp::CX, [q1, q2])
        .unwrap()
        .outputs_arr();
    let [maybe_b] = h
        .build_unwrap_sum(1, option_type([bool_t()]), maybe_b)
        .unwrap();

    h.finish_hugr_with_outputs([q1, q2, maybe_b]).unwrap()
}

// A circuit with an unsupported wire from the input to the output.
#[fixture]
fn circ_unsupported_io_wire() -> Hugr {
    let input_t = vec![qb_t(), qb_t(), option_type([qb_t()]).into()];
    let output_t = vec![qb_t(), qb_t(), option_type([qb_t()]).into()];
    let mut h = FunctionBuilder::new(
        "unsupported_input_to_output",
        Signature::new(input_t, output_t),
    )
    .unwrap();

    let [q1, q2, maybe_q] = h.input_wires_arr();

    let [q1, q2] = h
        .add_dataflow_op(TketOp::CX, [q1, q2])
        .unwrap()
        .outputs_arr();

    h.finish_hugr_with_outputs([q1, q2, maybe_q]).unwrap()
}

// Nodes with order edges should be marked as unsupported to preserve the connection.
#[fixture]
fn circ_order_edge() -> Hugr {
    let input_t = vec![qb_t(), qb_t()];
    let output_t = vec![qb_t(), qb_t()];
    let mut h = FunctionBuilder::new("order_edge", Signature::new(input_t, output_t)).unwrap();

    let [q1, q2] = h.input_wires_arr();

    let cx1 = h.add_dataflow_op(TketOp::CX, [q1, q2]).unwrap();
    let [q1, q2] = cx1.outputs_arr();

    let cx2 = h.add_dataflow_op(TketOp::CX, [q1, q2]).unwrap();
    let [q1, q2] = cx2.outputs_arr();

    let cx3 = h.add_dataflow_op(TketOp::CX, [q1, q2]).unwrap();
    let [q1, q2] = cx3.outputs_arr();

    h.set_order(&cx1, &cx3);

    h.finish_hugr_with_outputs([q1, q2]).unwrap()
}

// Bool types get converted automatically between native and tket representations.
#[fixture]
fn circ_bool_conversion() -> Hugr {
    let input_t = vec![bool_t(), bool_type()];
    let output_t = vec![bool_t(), bool_type()];
    let mut h = FunctionBuilder::new("bool_conversion", Signature::new(input_t, output_t)).unwrap();

    let [native_b0, tket_b1] = h.input_wires_arr();

    let [tket_b0] = h
        .add_dataflow_op(BoolOp::make_opaque, [native_b0])
        .unwrap()
        .outputs_arr();
    let [native_b1] = h
        .add_dataflow_op(BoolOp::read, [tket_b1])
        .unwrap()
        .outputs_arr();

    h.finish_hugr_with_outputs([native_b1, tket_b0]).unwrap()
}

/// A circuit that requires tracking info in `extra_subgraph` or `straight_through_wires`
/// (see `EncodedCircuitInfo`), for a nested circuit in a CircBox.
#[fixture]
fn circ_unsupported_extras_in_circ_box() -> Hugr {
    let input_t = vec![option_type([bool_t()]).into(), option_type([qb_t()]).into()];
    let output_t = vec![bool_t(), option_type([qb_t()]).into()];
    let mut h = FunctionBuilder::new(
        "unsupported_extras_in_circ_box",
        Signature::new(input_t.clone(), output_t.clone()),
    )
    .unwrap();

    let [maybe_b, maybe_q] = h.input_wires_arr();

    let [maybe_b, maybe_q] = {
        let mut nested = h
            .dfg_builder(Signature::new(input_t, output_t), [maybe_b, maybe_q])
            .unwrap();
        let [maybe_b, maybe_q] = nested.input_wires_arr();

        let [maybe_b] = nested
            .build_unwrap_sum(1, option_type([bool_t()]), maybe_b)
            .unwrap();

        nested
            .finish_with_outputs([maybe_b, maybe_q])
            .unwrap()
            .outputs_arr()
    };

    h.finish_hugr_with_outputs([maybe_b, maybe_q]).unwrap()
}

// A circuit with an output parameter wire.
#[fixture]
fn circ_output_parameter_wire() -> Hugr {
    let input_t = vec![];
    let output_t = vec![float64_type(), rotation_type()];
    let mut h =
        FunctionBuilder::new("output_parameter_wire", Signature::new(input_t, output_t)).unwrap();

    let pi = h.add_load_value(ConstF64::new(std::f64::consts::PI));
    let two = h.add_load_value(ConstF64::new(2.0));
    let two_pi = h
        .add_dataflow_op(FloatOps::fmul, [pi, two])
        .unwrap()
        .out_wire(0);
    let two_pi_rotation = h
        .add_dataflow_op(RotationOp::from_halfturns_unchecked, [two_pi])
        .unwrap()
        .out_wire(0);

    h.finish_hugr_with_outputs([two_pi, two_pi_rotation])
        .unwrap()
}

// A circuit with a [float64] wire, which should be treated as unsupported.
#[fixture]
fn circ_complex_param_type() -> Hugr {
    let input_t = vec![];
    let output_t = vec![SumType::new_tuple(vec![float64_type()]).into()];
    let mut h =
        FunctionBuilder::new("complex_param_type", Signature::new(input_t, output_t)).unwrap();

    let float64 = h.add_load_value(ConstF64::new(1.0));
    let float_tuple = h.make_tuple([float64]).unwrap();

    h.finish_hugr_with_outputs([float_tuple]).unwrap()
}

/// A program with two unsupported subgraphs not associated to any qubit or bit.
/// <https://github.com/CQCL/tket2/issues/1294>
#[fixture]
fn circ_unsupported_subgraph_no_registers() -> Hugr {
    let input_t = vec![qb_t()];
    let output_t = vec![qb_t(), rotation_type()];
    let mut h = FunctionBuilder::new(
        "unsupported_subgraph_no_registers",
        Signature::new(input_t, output_t),
    )
    .unwrap();
    let [q] = h.input_wires_arr();

    // Declare two functions to call.
    let func1 = {
        let call_input_t = vec![];
        let call_output_t = vec![float64_type()];
        h.module_root_builder()
            .declare("func1", Signature::new(call_input_t, call_output_t).into())
            .unwrap()
    };

    let func2 = {
        h.module_root_builder()
            .declare("func2", Signature::new_endo(vec![rotation_type()]).into())
            .unwrap()
    };

    // An unsupported call that'll require an opaque subgraph to encode.
    let call = h.call(&func1, &[], []).unwrap();
    let [f] = call.outputs_arr();

    // An operation that must be marked as unsupported, since it's input cannot be encoded.
    let [rot] = h
        .add_dataflow_op(RotationOp::from_halfturns_unchecked, [f])
        .unwrap()
        .outputs_arr();
    let [q] = h
        .add_dataflow_op(TketOp::Rz, [q, rot])
        .unwrap()
        .outputs_arr();

    // A separate call that will generate a second opaque subgraph.
    let [rot2] = h.call(&func2, &[], [rot]).unwrap().outputs_arr();

    h.finish_hugr_with_outputs([q, rot2]).unwrap()
}

// A circuit that discards the first qubit input and only outputs the second one.
#[fixture]
fn circ_discard_first_qubit() -> Hugr {
    let input_t = vec![qb_t(), qb_t()];
    let output_t = vec![qb_t()];
    let mut h =
        FunctionBuilder::new("discard_first_qubit", Signature::new(input_t, output_t)).unwrap();

    let [q1, q2] = h.input_wires_arr();

    h.add_dataflow_op(TketOp::MeasureFree, [q1]).unwrap();

    let [q2] = h.add_dataflow_op(TketOp::X, [q2]).unwrap().outputs_arr();

    h.finish_hugr_with_outputs([q2]).unwrap()
}

/// Check that all circuit ops have been translated to a native gate.
///
/// Panics if there are tk1 ops in the circuit.
fn check_no_tk1_ops(hugr: &Hugr) {
    for node in hugr.entry_descendants() {
        let Some(op) = hugr.get_optype(node).as_extension_op() else {
            continue;
        };
        if op.extension_id() == &TKET1_EXTENSION_ID {
            let payload = match op.args().first() {
                Some(t) => t.to_string(),
                None => "no payload".to_string(),
            };
            panic!(
                "{} found in circuit with payload '{payload}'",
                op.qualified_id()
            );
        }
    }
}

#[rstest]
#[case::simple(SIMPLE_JSON, 2, 2, false)]
#[case::simple_measure(SIMPLE_MEASURE, 4, 2, false)]
#[case::multi_register(MULTI_REGISTER, 2, 3, false)]
#[case::unknown_op(UNKNOWN_OP, 2, 3, true)]
#[case::small_parametrized(SMALL_PARAMETERIZED, 1, 1, false)]
#[case::parametrized(PARAMETERIZED, 4, 2, true)] // TK1 op is not supported
#[case::barrier(BARRIER, 3, 3, false)]
#[case::implicit_permutation(IMPLICIT_PERMUTATION, 1, 3, false)]
fn json_roundtrip(
    #[case] circ_s: &str,
    #[case] num_commands: usize,
    #[case] num_qubits: usize,
    #[case] has_tk1_ops: bool,
) {
    let ser: circuit_json::SerialCircuit = serde_json::from_str(circ_s).unwrap();
    assert_eq!(ser.commands.len(), num_commands);

    let hugr: Hugr = ser.decode(DecodeOptions::new()).unwrap();
    assert_eq!(crate::Circuit::new(&hugr).qubit_count(), num_qubits);

    if !has_tk1_ops {
        check_no_tk1_ops(&hugr);
    }

    let reser: SerialCircuit = SerialCircuit::encode(&hugr, EncodeOptions::new()).unwrap();
    validate_serial_circ(&reser);
    compare_serial_circs(&ser, &reser);
}

#[rstest]
#[cfg_attr(miri, ignore)] // Opening files is not supported in (isolated) miri
#[case::barenco_tof_10("../test_files/pytket/barenco_tof_10.json")]
fn json_file_roundtrip(#[case] circ: impl AsRef<std::path::Path>) {
    let reader = BufReader::new(std::fs::File::open(circ).unwrap());
    let ser: circuit_json::SerialCircuit = serde_json::from_reader(reader).unwrap();
    let hugr: Hugr = ser.decode(DecodeOptions::new()).unwrap();

    check_no_tk1_ops(&hugr);

    let reser: SerialCircuit = SerialCircuit::encode(&hugr, EncodeOptions::new()).unwrap();
    validate_serial_circ(&reser);
    compare_serial_circs(&ser, &reser);
}

/// Test parameter to select which decoders/encoders to enable.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum CircuitRoundtripTestConfig {
    // Use the default decoder/encoder configuration.
    Default,
    // Use only the prelude and core decoders/encoders, with no std ones.
    NoStd,
}

impl CircuitRoundtripTestConfig {
    fn decoder_config(&self) -> PytketDecoderConfig {
        match self {
            CircuitRoundtripTestConfig::Default => default_decoder_config(),
            CircuitRoundtripTestConfig::NoStd => {
                let mut config = PytketDecoderConfig::new();
                config.add_decoder(CoreDecoder);
                config.add_decoder(PreludeEmitter);
                config.add_type_translator(PreludeEmitter);
                config
            }
        }
    }

    fn encoder_config<H: HugrView>(&self) -> PytketEncoderConfig<H> {
        match self {
            CircuitRoundtripTestConfig::Default => default_encoder_config(),
            CircuitRoundtripTestConfig::NoStd => {
                let mut config = PytketEncoderConfig::new();
                config.add_emitter(PreludeEmitter);
                config.add_type_translator(PreludeEmitter);
                config
            }
        }
    }
}

#[rstest]
fn encoded_circuit_attributes(circ_measure_ancilla: Hugr) {
    let hugr = circ_measure_ancilla;

    let encode_options = EncodeOptions::new().with_subcircuits(true);

    let encoded = EncodedCircuit::new(&hugr, encode_options).unwrap_or_else(|e| panic!("{e}"));

    assert!(encoded.contains_circuit(hugr.entrypoint()));
    assert_eq!(encoded.len(), 1);
    assert!(!encoded.is_empty());

    let (region, serial_circ) = encoded.iter().exactly_one().ok().unwrap();
    assert_eq!(region, hugr.entrypoint());
    assert_eq!(serial_circ.commands.len(), 2);

    let par_sum: usize = encoded
        .par_iter()
        .map(|(_, circ)| circ.commands.len())
        .sum();
    assert_eq!(par_sum, 2);
}

/// Test the standalone serialisation roundtrip from a tket circuit.
///
/// This is not a pure roundtrip as the encoder may add internal qubits/bits to
/// the circuit.
///
/// Standalone circuit do not currently support unsupported subgraphs with
/// nested structure or non-local edges.
#[rstest]
#[case::meas_ancilla(circ_measure_ancilla(), CircuitRoundtripTestConfig::Default)]
#[case::preset_qubits(circ_preset_qubits(), CircuitRoundtripTestConfig::Default)]
#[case::preset_bits(circ_preset_bits(), CircuitRoundtripTestConfig::Default)]
#[case::preset_parameterized(circ_parameterized(), CircuitRoundtripTestConfig::Default)]
// TODO: Should pass once CircBox encoding of DFGs is re-enabled.
#[should_panic(expected = "Cannot encode subgraphs with nested structure")]
#[case::nested_dfgs(circ_nested_dfgs(), CircuitRoundtripTestConfig::Default)]
#[case::tk1_ops(circ_tk1_ops(), CircuitRoundtripTestConfig::Default)]
#[case::missing_decoders(circ_measure_ancilla(), CircuitRoundtripTestConfig::NoStd)]
fn circuit_standalone_roundtrip(#[case] hugr: Hugr, #[case] config: CircuitRoundtripTestConfig) {
    let circ_signature = hugr
        .entrypoint_optype()
        .inner_function_type()
        .expect("Dataflow entrypoint")
        .into_owned();
    let decode_options = DecodeOptions::new()
        .with_signature(circ_signature.clone())
        .with_config(config.decoder_config());
    let encode_options = EncodeOptions::new()
        .with_subcircuits(true)
        .with_config(config.encoder_config());

    let encoded = EncodedCircuit::new_standalone(&hugr, encode_options.clone())
        .unwrap_or_else(|e| panic!("{e}"));

    assert!(encoded.contains_circuit(hugr.entrypoint()));
    assert_eq!(encoded.len(), 1);

    // Re-encode the EncodedCircuit
    let extracted_from_circ = encoded
        .reassemble(
            hugr.entrypoint(),
            Some("main".to_string()),
            decode_options.clone(),
        )
        .unwrap_or_else(|e| panic!("{e}"));
    extracted_from_circ
        .validate()
        .unwrap_or_else(|e| panic!("{e}"));

    // Extract the head pytket circuit, and re-encode it on its own.
    let ser: &SerialCircuit = &encoded[hugr.entrypoint()];
    let deser: Hugr = ser.decode(decode_options).unwrap_or_else(|e| panic!("{e}"));

    deser.validate().unwrap_or_else(|e| panic!("{e}"));

    let deser_sig = deser
        .entrypoint_optype()
        .inner_function_type()
        .expect("Dataflow entrypoint")
        .into_owned();
    assert_eq!(
        &circ_signature.input, &deser_sig.input,
        "Input signature mismatch\n  Expected: {}\n  Actual:   {}",
        &circ_signature, &deser_sig
    );
    assert_eq!(
        &circ_signature.output, &deser_sig.output,
        "Output signature mismatch\n  Expected: {}\n  Actual:   {}",
        &circ_signature, &deser_sig
    );

    let reser = SerialCircuit::encode(&deser, encode_options).unwrap();

    validate_serial_circ(&reser);
    compare_serial_circs(ser, &reser);
}

/// Test that more complex unsupported subgraphs (nested structure, non-local edges) are rejected when encoding a standalone circuit.
#[rstest]
#[case::unsupported_subtree(circ_unsupported_subtree())]
#[case::global_defs(circ_global_defs())]
#[case::recursive(circ_recursive())]
fn reject_standalone_complex_subgraphs(#[case] hugr: Hugr) {
    let try_encoded = EncodedCircuit::new_standalone(&hugr, EncodeOptions::new());
    assert_matches!(
        try_encoded,
        Err(PytketEncodeError::OpEncoding(
            PytketEncodeOpError::UnsupportedStandaloneSubgraph { .. }
        ))
    );
}

/// Test that modifying the hugr before reassembling an EncodedCircuit fails.
#[rstest]
fn fail_on_modified_hugr(circ_tk1_ops: Hugr) {
    let encoded = EncodedCircuit::new(&circ_tk1_ops, EncodeOptions::new().with_subcircuits(true))
        .unwrap_or_else(|e| panic!("{e}"));

    let mut a_new_hugr = ModuleBuilder::new();
    a_new_hugr
        .declare("decl", Signature::new_endo(vec![qb_t()]).into())
        .unwrap();
    let mut a_new_hugr = a_new_hugr.finish_hugr().unwrap();

    let try_reassemble = encoded.reassemble_inplace(&mut a_new_hugr, None);

    assert_matches!(
        try_reassemble,
        Err(PytketDecodeError {
            inner: PytketDecodeErrorInner::IncompatibleTargetRegion { .. },
            ..
        })
    );
}

/// Test the serialisation roundtrip from a tket circuit into an EncodedCircuit and back.
#[rstest]
#[case::meas_ancilla(circ_measure_ancilla(), 1, CircuitRoundtripTestConfig::Default)]
#[case::preset_qubits(circ_preset_qubits(), 1, CircuitRoundtripTestConfig::Default)]
#[case::preset_bits(circ_preset_bits(), 1, CircuitRoundtripTestConfig::Default)]
#[case::preset_parameterized(circ_parameterized(), 1, CircuitRoundtripTestConfig::Default)]
#[case::nested_dfgs(circ_nested_dfgs(), 2, CircuitRoundtripTestConfig::Default)]
#[case::flat_opaque(circ_tk1_ops(), 1, CircuitRoundtripTestConfig::Default)]
#[case::unsupported_subtree(circ_unsupported_subtree(), 3, CircuitRoundtripTestConfig::Default)]
#[case::global_defs(circ_global_defs(), 1, CircuitRoundtripTestConfig::Default)]
#[case::recursive(circ_recursive(), 1, CircuitRoundtripTestConfig::Default)]
#[case::independent_subgraph(circ_independent_subgraph(), 3, CircuitRoundtripTestConfig::Default)]
#[case::unsupported_io_wire(circ_unsupported_io_wire(), 1, CircuitRoundtripTestConfig::Default)]
#[case::order_edge(circ_order_edge(), 1, CircuitRoundtripTestConfig::Default)]
#[case::bool_conversion(circ_bool_conversion(), 1, CircuitRoundtripTestConfig::Default)]
#[case::complex_param_type(circ_complex_param_type(), 1, CircuitRoundtripTestConfig::Default)]
// TODO: We need to track [`EncodedCircuitInfo`] for nested CircBoxes too. We
// have temporarily disabled encoding of DFG and function calls as CircBoxes to
// avoid an error here.
#[case::unsupported_extras_in_circ_box(
    circ_unsupported_extras_in_circ_box(),
    4,
    CircuitRoundtripTestConfig::Default
)]
#[case::output_parameter_wire(circ_output_parameter_wire(), 1, CircuitRoundtripTestConfig::Default)]
#[case::non_local(circ_non_local(), 2, CircuitRoundtripTestConfig::Default)]
#[case::unsupported_subgraph_no_registers(
    circ_unsupported_subgraph_no_registers(),
    1,
    CircuitRoundtripTestConfig::Default
)]
#[case::discard_first_qubit(circ_discard_first_qubit(), 1, CircuitRoundtripTestConfig::Default)]

fn encoded_circuit_roundtrip(
    #[case] hugr: Hugr,
    #[case] num_circuits: usize,
    #[case] config: CircuitRoundtripTestConfig,
) {
    let circ_signature = hugr
        .entrypoint_optype()
        .inner_function_type()
        .expect("Dataflow entrypoint")
        .into_owned();
    let encode_options = EncodeOptions::new()
        .with_subcircuits(true)
        .with_config(config.encoder_config());

    let encoded = EncodedCircuit::new(&hugr, encode_options).unwrap_or_else(|e| panic!("{e}"));

    assert!(encoded.contains_circuit(hugr.entrypoint()));
    assert_eq!(encoded.len(), num_circuits);

    let mut deser = hugr.clone();
    encoded
        .reassemble_inplace(&mut deser, Some(Arc::new(config.decoder_config())))
        .unwrap_or_else(|e| panic!("{e}"));

    deser.validate().unwrap_or_else(|e| panic!("{e}"));

    let deser_sig = deser
        .entrypoint_optype()
        .inner_function_type()
        .expect("Dataflow entrypoint")
        .into_owned();
    assert_eq!(
        &circ_signature.input, &deser_sig.input,
        "Input signature mismatch\n  Expected: {}\n  Actual:   {}",
        &circ_signature, &deser_sig
    );
    assert_eq!(
        &circ_signature.output, &deser_sig.output,
        "Output signature mismatch\n  Expected: {}\n  Actual:   {}",
        &circ_signature, &deser_sig
    );
}

/// Test serialisation of circuits with a symbolic expression.
///
/// Note: this is not a proper roundtrip as the symbols f0 and f1 are not
/// converted back to circuit inputs. This would require parsing symbolic
/// expressions.
#[rstest]
#[case::symbolic(circ_add_angles_symbolic())]
#[case::constants(circ_add_angles_constants())]
#[case::complex(circ_complex_angle_computation())]
fn test_add_angle_serialise(#[case] circ_add_angles: (Hugr, String)) {
    let (hugr, expected) = circ_add_angles;

    let ser: SerialCircuit = SerialCircuit::encode(&hugr, EncodeOptions::new()).unwrap();
    assert_eq!(ser.commands.len(), 1);
    assert_eq!(ser.commands[0].op.op_type, optype::OpType::Rx);
    assert_eq!(ser.commands[0].op.params, Some(vec![expected]));

    let deser: Hugr = ser.decode(DecodeOptions::new()).unwrap();
    let reser = SerialCircuit::encode(&deser, EncodeOptions::new()).unwrap();
    validate_serial_circ(&reser);
    compare_serial_circs(&ser, &reser);
}

/// Test the different options for inplace decoding.
#[rstest]
fn test_inplace_decoding() {
    let serial: circuit_json::SerialCircuit = serde_json::from_str(SIMPLE_JSON).unwrap();

    let mut builder = ModuleBuilder::new();

    let func1 = serial
        .decode_into(
            builder.hugr_mut(),
            DecodeInsertionTarget::Function { fn_name: None },
            DecodeOptions::new(),
        )
        .unwrap();
    let circ_signature = builder
        .hugr()
        .get_optype(func1)
        .inner_function_type()
        .unwrap()
        .into_owned();

    let dfg = {
        let mut fn_build = builder
            .define_function("func2", circ_signature.clone())
            .unwrap();
        let fn2_node = fn_build.container_node();
        let [inp, out] = fn_build.io();

        let dfg = serial
            .decode_into(
                fn_build.hugr_mut(),
                DecodeInsertionTarget::Region { parent: fn2_node },
                DecodeOptions::new(),
            )
            .unwrap();

        // Wire up the inserted dfg
        for inp_idx in 0..circ_signature.input_count() {
            fn_build.hugr_mut().connect(inp, inp_idx, dfg, inp_idx);
        }
        for out_idx in 0..circ_signature.output_count() {
            fn_build.hugr_mut().connect(dfg, out_idx, out, out_idx);
        }

        dfg
    };

    // Finish up and validate the final HUGR
    let hugr = builder.finish_hugr().unwrap();

    assert!(hugr.get_optype(func1).is_func_defn());
    assert!(hugr.get_optype(dfg).is_dfg());
}

/// Test the decoding pytket circuits with externally-set signatures.
#[rstest]
#[case::qubits_in_qubits_out(Signature::new_endo(vec![qb_t(), qb_t()]))]
#[case::qubits_in_bits_out(Signature::new(vec![qb_t(), qb_t()], vec![bool_t(), bool_t()]))]
#[case::nothing_in_all_out(Signature::new(vec![], vec![qb_t(), qb_t(), bool_t(), bool_t()]))]
#[case::nothing_in_nothing_out(Signature::new(vec![], vec![]))]
#[case::params_in_all_out(Signature::new(vec![rotation_type(), float64_type()], vec![qb_t(), qb_t(), bool_t(), bool_t()]))]
fn test_decoding_signature(#[case] signature: Signature) {
    // A circuit on two qubits, with two measurement operations.
    let serial: circuit_json::SerialCircuit = serde_json::from_str(SIMPLE_MEASURE).unwrap();

    let options = DecodeOptions::default().with_signature(signature);
    let hugr = serial.decode(options).unwrap();

    // Hugr must be valid.
    hugr.validate().unwrap();

    // Hugr must contain the two measurement ops.
    let measure_op_count = hugr
        .children(hugr.entrypoint())
        .filter(|&child| {
            hugr.get_optype(child)
                .as_extension_op()
                .is_some_and(|op| op.unqualified_id() == "Measure")
        })
        .count();
    assert_eq!(measure_op_count, 2);
}

/// Test the lazy qubit/bit decoding behaviour when the registers are not
/// present in the decoded region signature.
///
/// If the registers are never consumed, they won't be initialized at all.
#[rstest]
fn test_qubit_elision() {
    let ser: circuit_json::SerialCircuit = serde_json::from_str(EMPTY_CIRCUIT).unwrap();
    assert_eq!(ser.commands.len(), 0);

    let hugr: Hugr = ser
        .decode(DecodeOptions::new().with_signature(Signature::new_endo(vec![])))
        .unwrap();
    assert_eq!(crate::Circuit::new(&hugr).qubit_count(), 0);

    check_no_tk1_ops(&hugr);

    // The circuit should have no alloc/frees or const definitions
    assert_eq!(crate::Circuit::new(&hugr).num_operations(), 0);
}