rumoca 0.7.28

Modelica compiler written in RUST
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
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
//! Balance check tests for Modelica models.
//!
//! Tests that models are correctly analyzed for equation/variable balance.

mod common;

use common::compile_fixture;

#[test]
fn test_balanced_integrator() {
    let result = compile_fixture("integrator", "Integrator").unwrap();

    assert!(result.is_balanced(), "Integrator should be balanced");
    assert!(result.balance_status().contains("balanced"));
    assert_eq!(result.balance.num_equations, 1);
    assert_eq!(result.balance.num_unknowns, 1);
    assert_eq!(result.balance.num_states, 1);
}

#[test]
fn test_balanced_bouncing_ball() {
    let result = compile_fixture("bouncing_ball", "BouncingBall").unwrap();

    assert!(result.is_balanced(), "BouncingBall should be balanced");
    // h and v are states, one algebraic (flying)
    assert_eq!(result.balance.num_states, 2);
}

#[test]
fn test_over_determined_model() {
    let result = compile_fixture("unbalanced_overdetermined", "UnbalancedOverdetermined").unwrap();

    assert!(
        !result.is_balanced(),
        "Over-determined model should not be balanced"
    );
    assert!(result.balance_status().contains("over-determined"));
    assert!(result.balance.num_equations > result.balance.num_unknowns);
}

#[test]
fn test_under_determined_model() {
    let result =
        compile_fixture("unbalanced_underdetermined", "UnbalancedUnderdetermined").unwrap();

    assert!(
        !result.is_balanced(),
        "Under-determined model should not be balanced"
    );
    assert!(result.balance_status().contains("under-determined"));
    assert!(result.balance.num_unknowns > result.balance.num_equations);
}

#[test]
fn test_balance_difference() {
    let result = compile_fixture("unbalanced_overdetermined", "UnbalancedOverdetermined").unwrap();

    let diff = result.balance.difference();
    assert!(
        diff > 0,
        "Over-determined model should have positive difference"
    );

    let result =
        compile_fixture("unbalanced_underdetermined", "UnbalancedUnderdetermined").unwrap();

    let diff = result.balance.difference();
    assert!(
        diff < 0,
        "Under-determined model should have negative difference"
    );
}

#[test]
fn test_type_causality_propagation() {
    // Test that type aliases like "connector RealInput = input Real" propagate
    // causality to components of that type
    let result = compile_fixture("type_causality", "Der").unwrap();

    // Der block: y = der(u)
    // - u is input (from RealInput type) -> not an unknown
    // - y is output (from RealOutput type) -> is an unknown
    // - 1 equation: y = der(u)
    // Should be balanced: 1 equation, 1 unknown
    assert!(
        result.is_balanced(),
        "Der block should be balanced when type causality is applied: {} equations, {} unknowns, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_inputs
    );
    assert_eq!(result.balance.num_equations, 1, "Should have 1 equation");
    assert_eq!(result.balance.num_unknowns, 1, "Should have 1 unknown (y)");
    assert_eq!(result.balance.num_inputs, 1, "Should have 1 input (u)");
}

#[test]
fn test_integrator_variants_balance() {
    // Test SimpleIntegrator - should be balanced
    // u (input), y (state from der(y)), 1 equation: der(y) = k*u
    let result = compile_fixture("integrator_simple", "SimpleIntegrator").unwrap();
    println!(
        "SimpleIntegrator: {} eq, {} unk, {} inputs, {} states",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_inputs,
        result.balance.num_states
    );
    assert!(
        result.is_balanced(),
        "SimpleIntegrator should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );

    // Test IntegratorWithProtected - has protected outputs
    // u (input), y (state), local_reset (output), local_set (output)
    // 3 equations: local_reset=false, local_set=0, der(y)=k*u
    // 3 unknowns: y, local_reset, local_set
    let result = compile_fixture("integrator_simple", "IntegratorWithProtected").unwrap();
    println!(
        "IntegratorWithProtected: {} eq, {} unk, {} inputs, {} states",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_inputs,
        result.balance.num_states
    );
    assert!(
        result.is_balanced(),
        "IntegratorWithProtected should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );

    // Test IntegratorWithIf - has if-equations
    let result = compile_fixture("integrator_simple", "IntegratorWithIf").unwrap();
    println!(
        "IntegratorWithIf: {} eq, {} unk, {} inputs, {} states",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_inputs,
        result.balance.num_states
    );
    assert!(
        result.is_balanced(),
        "IntegratorWithIf should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
}

#[test]
fn test_array_balance() {
    // Test FixedArrayState - explicit equations for each array element
    // x[3] states = 3 unknowns, 3 equations: der(x[1])=..., der(x[2])=..., der(x[3])=...
    let result = compile_fixture("array_balance", "ArrayBalance.FixedArrayState").unwrap();
    println!(
        "FixedArrayState: {} eq, {} unk, {} states",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_states
    );
    assert!(
        result.is_balanced(),
        "FixedArrayState should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(result.balance.num_states, 3, "Should have 3 states");

    // Test ForLoopArrayState - for loop equations
    // x[3] states = 3 unknowns, for loop with 3 iterations = 3 equations
    let result = compile_fixture("array_balance", "ArrayBalance.ForLoopArrayState").unwrap();
    println!(
        "ForLoopArrayState: {} eq, {} unk, {} states",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_states
    );
    assert!(
        result.is_balanced(),
        "ForLoopArrayState should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(
        result.balance.num_states, 3,
        "Should have 3 states from for loop"
    );

    // Test VectorEquation - vector equations without for loop
    // x[3] + y[3] = 6 unknowns, 2 vector equations = 6 scalar equations
    let result = compile_fixture("array_balance", "ArrayBalance.VectorEquation").unwrap();
    println!(
        "VectorEquation: {} eq, {} unk, {} states, {} algebraic",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_states,
        result.balance.num_algebraic
    );
    assert!(
        result.is_balanced(),
        "VectorEquation should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(result.balance.num_states, 3, "Should have 3 states (y[3])");
    assert_eq!(
        result.balance.num_algebraic, 3,
        "Should have 3 algebraic (x[3])"
    );
    assert_eq!(
        result.balance.num_equations, 6,
        "Should have 6 equations (2 vector eqs * 3)"
    );
}

#[test]
fn test_conditional_components() {
    // Test SimpleNoConditional - no conditional components
    // Should be balanced: 1 eq (y=2*u), 1 unk (y)
    let result = compile_fixture(
        "conditional_components",
        "ConditionalComponents.SimpleNoConditional",
    )
    .unwrap();
    println!(
        "SimpleNoConditional: {} eq, {} unk, {} inputs",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "SimpleNoConditional should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );

    // Test ConditionalInputFalse - conditional component defaults to false
    // The `reset if use_reset` should NOT be counted since use_reset=false
    // Should be balanced: 1 eq (y=2*u), 1 unk (y)
    let result = compile_fixture(
        "conditional_components",
        "ConditionalComponents.ConditionalInputFalse",
    )
    .unwrap();
    println!(
        "ConditionalInputFalse: {} eq, {} unk, {} inputs",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_inputs
    );
    // This is what we're testing - conditional components should be filtered
    assert!(
        result.is_balanced(),
        "ConditionalInputFalse should be balanced (reset filtered out): {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );

    // Test ConditionalInputTrue - conditional component defaults to true
    // The `reset if use_reset` SHOULD be counted since use_reset=true
    // Should be unbalanced: 1 eq, 2 unk (reset is included as an input)
    let result = compile_fixture(
        "conditional_components",
        "ConditionalComponents.ConditionalInputTrue",
    )
    .unwrap();
    println!(
        "ConditionalInputTrue: {} eq, {} unk, {} inputs",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_inputs
    );
    // With use_reset=true, the reset input is included, making it unbalanced (1 eq, 2 unk)
    // Actually it will be partial since reset is an external connector
    assert_eq!(
        result.balance.num_inputs, 2,
        "ConditionalInputTrue should have 2 inputs (u and reset)"
    );

    // Test MultipleConditionalsFalse - multiple conditional components, all default to false
    let result = compile_fixture(
        "conditional_components",
        "ConditionalComponents.MultipleConditionalsFalse",
    )
    .unwrap();
    println!(
        "MultipleConditionalsFalse: {} eq, {} unk, {} inputs",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "MultipleConditionalsFalse should be balanced (both conditionals filtered): {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );

    // Test ConditionalWithAnd - condition is `use_reset and use_set`, both false
    let result = compile_fixture(
        "conditional_components",
        "ConditionalComponents.ConditionalWithAnd",
    )
    .unwrap();
    println!(
        "ConditionalWithAnd: {} eq, {} unk, {} inputs",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "ConditionalWithAnd should be balanced (AND condition evaluates to false): {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
}

#[test]
fn test_parameter_arrays() {
    // Test SimpleParameterForLoop - for i in 1:n where n=3
    // x[3] states = 3 unknowns, 3 equations from for loop
    let result =
        compile_fixture("parameter_arrays", "ParameterArrays.SimpleParameterForLoop").unwrap();
    println!(
        "SimpleParameterForLoop: {} eq, {} unk, {} states",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_states
    );
    assert!(
        result.is_balanced(),
        "SimpleParameterForLoop should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(result.balance.num_equations, 3, "Should have 3 equations");
    assert_eq!(result.balance.num_unknowns, 3, "Should have 3 unknowns");

    // Test ParameterArithmetic - for i in 1:2*n where n=2
    // x[4] states = 4 unknowns, 4 equations from for loop
    let result =
        compile_fixture("parameter_arrays", "ParameterArrays.ParameterArithmetic").unwrap();
    println!(
        "ParameterArithmetic: {} eq, {} unk, {} states",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_states
    );
    assert!(
        result.is_balanced(),
        "ParameterArithmetic should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(result.balance.num_equations, 4, "Should have 4 equations");
    assert_eq!(result.balance.num_unknowns, 4, "Should have 4 unknowns");

    // Test MultipleParameters - for i in 1:n (n=2) + for j in 1:m (m=3)
    // x[2] + y[3] = 5 unknowns, 2 + 3 = 5 equations
    let result = compile_fixture("parameter_arrays", "ParameterArrays.MultipleParameters").unwrap();
    println!(
        "MultipleParameters: {} eq, {} unk, {} states",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_states
    );
    assert!(
        result.is_balanced(),
        "MultipleParameters should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(result.balance.num_equations, 5, "Should have 5 equations");
    assert_eq!(result.balance.num_unknowns, 5, "Should have 5 unknowns");

    // Test NestedForLoop - nested for i in 1:n, j in 1:m where n=m=2
    // x[2,2] = 4 unknowns, 4 equations from nested loop
    let result = compile_fixture("parameter_arrays", "ParameterArrays.NestedForLoop").unwrap();
    println!(
        "NestedForLoop: {} eq, {} unk, {} states",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_states
    );
    assert!(
        result.is_balanced(),
        "NestedForLoop should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(result.balance.num_equations, 4, "Should have 4 equations");
    assert_eq!(result.balance.num_unknowns, 4, "Should have 4 unknowns");

    // Test OuterWithInner - parameter modification propagation
    // Outer has order=3, passes to InnerForLoop(order=3)
    // na = integer((3+1)/2) = 2, x[2] = 2 states/unknowns, 2 equations
    let result = compile_fixture("parameter_arrays", "ParameterArrays.OuterWithInner").unwrap();
    println!(
        "OuterWithInner: {} eq, {} unk, {} states",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_states
    );
    assert!(
        result.is_balanced(),
        "OuterWithInner should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(result.balance.num_equations, 2, "Should have 2 equations");
    assert_eq!(result.balance.num_unknowns, 2, "Should have 2 unknowns");
}

#[test]
fn test_size_function() {
    // Test SimpleSizeFunction - a={1,2,3}, size(a,1)=3, x[size(a,1)-1]=x[2]
    // x[2] states = 2 unknowns, for i in 1:size(a,1)-1 = 2 equations
    let result = compile_fixture("size_function", "SizeFunction.SimpleSizeFunction").unwrap();
    println!(
        "SimpleSizeFunction: {} eq, {} unk, {} states",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_states
    );
    assert!(
        result.is_balanced(),
        "SimpleSizeFunction should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(result.balance.num_equations, 2, "Should have 2 equations");
    assert_eq!(result.balance.num_unknowns, 2, "Should have 2 unknowns");

    // Test MultipleSizeCalls - b={1,2,3,4}, size(b,1)=4
    // y[4] states = 4 unknowns, 4 equations from for loop
    let result = compile_fixture("size_function", "SizeFunction.MultipleSizeCalls").unwrap();
    println!(
        "MultipleSizeCalls: {} eq, {} unk, {} states",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_states
    );
    assert!(
        result.is_balanced(),
        "MultipleSizeCalls should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(result.balance.num_equations, 4, "Should have 4 equations");
    assert_eq!(result.balance.num_unknowns, 4, "Should have 4 unknowns");
}

#[test]
fn test_comparison_operators() {
    // Test EqualityTrue - n=0, condition n==0 is true
    // 1 equation (y=u), 1 unknown (y)
    let result =
        compile_fixture("comparison_operators", "ComparisonOperators.EqualityTrue").unwrap();
    println!(
        "EqualityTrue: {} eq, {} unk",
        result.balance.num_equations, result.balance.num_unknowns
    );
    assert!(
        result.is_balanced(),
        "EqualityTrue should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(result.balance.num_equations, 1, "Should have 1 equation");

    // Test EqualityFalse - n=3, condition n==0 is false
    // 1 equation (y=2*u from else), 1 unknown (y)
    let result =
        compile_fixture("comparison_operators", "ComparisonOperators.EqualityFalse").unwrap();
    println!(
        "EqualityFalse: {} eq, {} unk",
        result.balance.num_equations, result.balance.num_unknowns
    );
    assert!(
        result.is_balanced(),
        "EqualityFalse should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(result.balance.num_equations, 1, "Should have 1 equation");

    // Test LessThanTrue - n=2, condition n<5 is true
    let result =
        compile_fixture("comparison_operators", "ComparisonOperators.LessThanTrue").unwrap();
    println!(
        "LessThanTrue: {} eq, {} unk",
        result.balance.num_equations, result.balance.num_unknowns
    );
    assert!(result.is_balanced());
    assert_eq!(result.balance.num_equations, 1);

    // Test GreaterThanTrue - n=10, condition n>5 is true
    let result = compile_fixture(
        "comparison_operators",
        "ComparisonOperators.GreaterThanTrue",
    )
    .unwrap();
    println!(
        "GreaterThanTrue: {} eq, {} unk",
        result.balance.num_equations, result.balance.num_unknowns
    );
    assert!(result.is_balanced());
    assert_eq!(result.balance.num_equations, 1);

    // Test SizeComparisonTrue - a={1}, nx=size(a,1)-1=0, condition nx==0 is true
    // 1 equation (y=u), 1 unknown (y)
    let result = compile_fixture(
        "comparison_operators",
        "ComparisonOperators.SizeComparisonTrue",
    )
    .unwrap();
    println!(
        "SizeComparisonTrue: {} eq, {} unk",
        result.balance.num_equations, result.balance.num_unknowns
    );
    assert!(
        result.is_balanced(),
        "SizeComparisonTrue should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(result.balance.num_equations, 1, "Should have 1 equation");

    // Test SizeComparisonFalse - a={1,2,3}, nx=size(a,1)-1=2, condition nx==0 is false
    // x[2] = 2 unknowns, for loop with 2 iterations = 2 equations
    let result = compile_fixture(
        "comparison_operators",
        "ComparisonOperators.SizeComparisonFalse",
    )
    .unwrap();
    println!(
        "SizeComparisonFalse: {} eq, {} unk, {} states",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_states
    );
    assert!(
        result.is_balanced(),
        "SizeComparisonFalse should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(result.balance.num_equations, 2, "Should have 2 equations");
    assert_eq!(result.balance.num_unknowns, 2, "Should have 2 unknowns");

    // Test ProtectedParamTest - simpler test with protected parameter
    // a={1}, so nx=size(a,1)-1=0, condition nx==0 is true
    // 1 equation (y=u), 1 unknown (y)
    let result = compile_fixture(
        "comparison_operators",
        "ComparisonOperators.ProtectedParamTest",
    )
    .unwrap();
    println!(
        "ProtectedParamTest: {} eq, {} unk",
        result.balance.num_equations, result.balance.num_unknowns
    );
    assert!(
        result.is_balanced(),
        "ProtectedParamTest should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(result.balance.num_equations, 1, "Should have 1 equation");

    // Test TransferFunctionLike - faithful reproduction of MSL TransferFunction structure
    // a={1}, so na=1, nx=0, x[0] and x_scaled[0] are empty
    // if nx==0 then y=d*u (1 equation), else (these equations not counted)
    // Should be balanced: 1 equation, 1 unknown (y)
    let result = compile_fixture(
        "comparison_operators",
        "ComparisonOperators.TransferFunctionLike",
    )
    .unwrap();
    println!(
        "TransferFunctionLike: {} eq, {} unk, {} states, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_states,
        result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "TransferFunctionLike should be balanced: {} eq, {} unk (expected 1 eq, 1 unk)",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
}

#[test]
fn test_binding_equations() {
    // Test SlewLike - model with binding equation in protected section
    // Similar to Modelica.Blocks.Nonlinear.SlewRateLimiter
    // Should be balanced: 1 state (y), 1 algebraic (val)
    // 2 equations: val = (u - y) / 0.001, der(y) = val
    let result = compile_fixture("binding_test", "BindingTest.SlewLike").unwrap();
    println!(
        "SlewLike: {} eq, {} unk, {} states, {} alg",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_states,
        result.balance.num_algebraic
    );
    assert!(
        result.is_balanced(),
        "SlewLike should be balanced: {} eq, {} unk (expected 2 eq, 2 unk)",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(result.balance.num_states, 1, "Should have 1 state (y)");
    assert_eq!(
        result.balance.num_algebraic, 1,
        "Should have 1 algebraic (val)"
    );

    // Test ExplicitEquation - same structure with explicit equation
    // Should be balanced: 1 state (y), 1 algebraic (val)
    // 2 equations: val = (u - y) / 0.001, der(y) = val
    let result = compile_fixture("binding_test", "BindingTest.ExplicitEquation").unwrap();
    println!(
        "ExplicitEquation: {} eq, {} unk, {} states, {} alg",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_states,
        result.balance.num_algebraic
    );
    assert!(
        result.is_balanced(),
        "ExplicitEquation should be balanced: {} eq, {} unk (expected 2 eq, 2 unk)",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
}

#[test]
fn test_nonlinear_blocks() {
    // Test Limiter block - SISO with if-equations and protected variable
    // 2 unknowns (y, simplifiedExpr), 2 equations
    let result = compile_fixture("nonlinear_blocks", "NonlinearBlocks.Limiter").unwrap();
    println!(
        "Limiter: {} eq, {} unk, {} states, {} alg, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_states,
        result.balance.num_algebraic,
        result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "Limiter should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(result.balance.num_inputs, 1, "Should have 1 input (u)");
    assert_eq!(
        result.balance.num_algebraic, 2,
        "Should have 2 algebraic (y, simplifiedExpr)"
    );

    // Test VariableLimiter block - SISO with multiple inputs
    // 2 unknowns (y, simplifiedExpr), 2 equations
    let result = compile_fixture("nonlinear_blocks", "NonlinearBlocks.VariableLimiter").unwrap();
    println!(
        "VariableLimiter: {} eq, {} unk, {} states, {} alg, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_states,
        result.balance.num_algebraic,
        result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "VariableLimiter should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(
        result.balance.num_inputs, 3,
        "Should have 3 inputs (u, limit1, limit2)"
    );

    // Test SlewRateLimiter block - SISO with state and binding equation
    // 2 unknowns (y state, val algebraic), 2 equations (der(y)=..., val=... binding)
    let result = compile_fixture("nonlinear_blocks", "NonlinearBlocks.SlewRateLimiter").unwrap();
    println!(
        "SlewRateLimiter: {} eq, {} unk, {} states, {} alg, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_states,
        result.balance.num_algebraic,
        result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "SlewRateLimiter should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(
        result.balance.num_states, 1,
        "Should have 1 state (y from der(y))"
    );
    assert_eq!(
        result.balance.num_algebraic, 1,
        "Should have 1 algebraic (val)"
    );

    // Test DeadZone block - simple SISO
    // 1 unknown (y), 1 equation
    let result = compile_fixture("nonlinear_blocks", "NonlinearBlocks.DeadZone").unwrap();
    println!(
        "DeadZone: {} eq, {} unk, {} states, {} alg, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_states,
        result.balance.num_algebraic,
        result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "DeadZone should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(result.balance.num_equations, 1, "Should have 1 equation");
    assert_eq!(result.balance.num_unknowns, 1, "Should have 1 unknown (y)");
}

#[test]
fn test_when_equations() {
    // Test SimpleWhen - state + discrete variable with when equation
    // 1 state (x), 1 discrete (y), 2 equations (der(x), when y=...)
    let result = compile_fixture("when_equations", "WhenEquations.SimpleWhen").unwrap();
    println!(
        "SimpleWhen: {} eq, {} unk, {} states, {} alg, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_states,
        result.balance.num_algebraic,
        result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "SimpleWhen should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(result.balance.num_states, 1, "Should have 1 state (x)");

    // Test MultipleDiscreteWhen - multiple discrete variables from when
    // 1 state (x), 2 discrete (y_min, y_max), 3 equations
    let result = compile_fixture("when_equations", "WhenEquations.MultipleDiscreteWhen").unwrap();
    println!(
        "MultipleDiscreteWhen: {} eq, {} unk, {} states, {} alg",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_states,
        result.balance.num_algebraic
    );
    assert!(
        result.is_balanced(),
        "MultipleDiscreteWhen should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );

    // Test WhenElsewhen - when/elsewhen branches
    let result = compile_fixture("when_equations", "WhenEquations.WhenElsewhen").unwrap();
    println!(
        "WhenElsewhen: {} eq, {} unk",
        result.balance.num_equations, result.balance.num_unknowns
    );
    assert!(
        result.is_balanced(),
        "WhenElsewhen should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );

    // Test ExtremaLike - pattern from MSL ContinuousSignalExtrema
    // 1 state (x), 4 discrete (y_min, y_max, t_min, t_max), 5 equations
    let result = compile_fixture("when_equations", "WhenEquations.ExtremaLike").unwrap();
    println!(
        "ExtremaLike: {} eq, {} unk, {} states, {} alg",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_states,
        result.balance.num_algebraic
    );
    assert!(
        result.is_balanced(),
        "ExtremaLike should be balanced: {} eq, {} unk (expected 5 eq, 5 unk)",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
}

#[test]
fn test_connector_equations() {
    // Test SingleResistor - resistor with external pins and connections
    let result = compile_fixture("connectors", "Connectors.SingleResistor");
    match result {
        Ok(res) => {
            println!(
                "SingleResistor: {} eq, {} unk, {} states, {} alg",
                res.balance.num_equations,
                res.balance.num_unknowns,
                res.balance.num_states,
                res.balance.num_algebraic
            );
            // With connections: should be balanced
            // Resistor has 2 equations, connections add equality + flow equations
        }
        Err(e) => {
            println!("SingleResistor compile error: {:?}", e);
        }
    }

    // Test TwoResistors - two resistors in series
    let result = compile_fixture("connectors", "Connectors.TwoResistors");
    match result {
        Ok(res) => {
            println!(
                "TwoResistors: {} eq, {} unk, {} states, {} alg",
                res.balance.num_equations,
                res.balance.num_unknowns,
                res.balance.num_states,
                res.balance.num_algebraic
            );
        }
        Err(e) => {
            println!("TwoResistors compile error: {:?}", e);
        }
    }
}

#[test]
fn test_causal_blocks() {
    // Test JustOutput - minimal output variable (direct type)
    let result = compile_fixture("connectors", "Connectors.JustOutput");
    match result {
        Ok(res) => {
            println!(
                "JustOutput: {} eq, {} unk, {} inputs",
                res.balance.num_equations, res.balance.num_unknowns, res.balance.num_inputs
            );
            assert!(
                res.is_balanced(),
                "JustOutput should be balanced: {} eq, {} unk",
                res.balance.num_equations,
                res.balance.num_unknowns
            );
        }
        Err(e) => {
            println!("JustOutput compile error: {:?}", e);
        }
    }

    // Test JustOutputAlias - output with type alias (RealOutput = output Real)
    let result = compile_fixture("connectors", "Connectors.JustOutputAlias");
    match result {
        Ok(res) => {
            println!(
                "JustOutputAlias: {} eq, {} unk, {} inputs",
                res.balance.num_equations, res.balance.num_unknowns, res.balance.num_inputs
            );
            assert!(
                res.is_balanced(),
                "JustOutputAlias should be balanced: {} eq, {} unk",
                res.balance.num_equations,
                res.balance.num_unknowns
            );
        }
        Err(e) => {
            println!("JustOutputAlias compile error: {:?}", e);
        }
    }

    // Test SimpleGain - SISO block with input and output
    let result = compile_fixture("connectors", "Connectors.SimpleGain");
    match result {
        Ok(res) => {
            println!(
                "SimpleGain: {} eq, {} unk, {} inputs",
                res.balance.num_equations, res.balance.num_unknowns, res.balance.num_inputs
            );
            assert!(
                res.is_balanced(),
                "SimpleGain should be balanced: {} eq, {} unk",
                res.balance.num_equations,
                res.balance.num_unknowns
            );
            assert_eq!(res.balance.num_inputs, 1, "Should have 1 input (u)");
        }
        Err(e) => {
            println!("SimpleGain compile error: {:?}", e);
        }
    }

    // Test VectorizedGain - block with parameter-sized arrays
    let result = compile_fixture("connectors", "Connectors.VectorizedGain");
    match result {
        Ok(res) => {
            println!(
                "VectorizedGain: {} eq, {} unk, {} inputs (n=2)",
                res.balance.num_equations, res.balance.num_unknowns, res.balance.num_inputs
            );
            // With n=2: should be 2 equations, 2 unknowns (y[1], y[2])
            assert!(
                res.is_balanced(),
                "VectorizedGain should be balanced: {} eq, {} unk",
                res.balance.num_equations,
                res.balance.num_unknowns
            );
        }
        Err(e) => {
            println!("VectorizedGain compile error: {:?}", e);
        }
    }

    // Test EmptyArrayPassthrough - empty arrays (n=0) should produce 0 eq, 0 unk
    let result = compile_fixture("connectors", "Connectors.EmptyArrayPassthrough");
    match result {
        Ok(res) => {
            println!(
                "EmptyArrayPassthrough: {} eq, {} unk, {} inputs (n=0)",
                res.balance.num_equations, res.balance.num_unknowns, res.balance.num_inputs
            );
            // With n=0: should be 0 equations, 0 unknowns (empty arrays)
            assert!(
                res.is_balanced(),
                "EmptyArrayPassthrough should be balanced: {} eq, {} unk",
                res.balance.num_equations,
                res.balance.num_unknowns
            );
            assert_eq!(
                res.balance.num_equations, 0,
                "Empty array should have 0 equations"
            );
            assert_eq!(
                res.balance.num_unknowns, 0,
                "Empty array should have 0 unknowns"
            );
        }
        Err(e) => {
            panic!("EmptyArrayPassthrough compile error: {:?}", e);
        }
    }
}

#[test]
fn test_algorithm_sections() {
    // Test SimpleAlgorithm - single output from algorithm
    // 1 unknown (y), 1 equation (from algorithm section)
    let result = compile_fixture("algorithms", "Algorithms.SimpleAlgorithm");
    match result {
        Ok(res) => {
            println!(
                "SimpleAlgorithm: {} eq, {} unk, {} inputs",
                res.balance.num_equations, res.balance.num_unknowns, res.balance.num_inputs
            );
            assert!(
                res.is_balanced(),
                "SimpleAlgorithm should be balanced: {} eq, {} unk",
                res.balance.num_equations,
                res.balance.num_unknowns
            );
            assert_eq!(
                res.balance.num_equations, 1,
                "Should have 1 equation from algorithm"
            );
            assert_eq!(res.balance.num_unknowns, 1, "Should have 1 unknown (y)");
        }
        Err(e) => {
            panic!("SimpleAlgorithm compile error: {:?}", e);
        }
    }

    // Test MultipleOutputs - two outputs from algorithm
    // 2 unknowns (y1, y2), 2 equations (from algorithm section)
    let result = compile_fixture("algorithms", "Algorithms.MultipleOutputs");
    match result {
        Ok(res) => {
            println!(
                "MultipleOutputs: {} eq, {} unk, {} inputs",
                res.balance.num_equations, res.balance.num_unknowns, res.balance.num_inputs
            );
            assert!(
                res.is_balanced(),
                "MultipleOutputs should be balanced: {} eq, {} unk",
                res.balance.num_equations,
                res.balance.num_unknowns
            );
            assert_eq!(
                res.balance.num_equations, 2,
                "Should have 2 equations from algorithm"
            );
        }
        Err(e) => {
            panic!("MultipleOutputs compile error: {:?}", e);
        }
    }

    // Test AlgorithmWithIf - algorithm with if statement
    let result = compile_fixture("algorithms", "Algorithms.AlgorithmWithIf");
    match result {
        Ok(res) => {
            println!(
                "AlgorithmWithIf: {} eq, {} unk",
                res.balance.num_equations, res.balance.num_unknowns
            );
            assert!(
                res.is_balanced(),
                "AlgorithmWithIf should be balanced: {} eq, {} unk",
                res.balance.num_equations,
                res.balance.num_unknowns
            );
        }
        Err(e) => {
            panic!("AlgorithmWithIf compile error: {:?}", e);
        }
    }

    // Test MixedEquationAlgorithm - both equation and algorithm sections
    let result = compile_fixture("algorithms", "Algorithms.MixedEquationAlgorithm");
    match result {
        Ok(res) => {
            println!(
                "MixedEquationAlgorithm: {} eq, {} unk",
                res.balance.num_equations, res.balance.num_unknowns
            );
            assert!(
                res.is_balanced(),
                "MixedEquationAlgorithm should be balanced: {} eq, {} unk",
                res.balance.num_equations,
                res.balance.num_unknowns
            );
        }
        Err(e) => {
            panic!("MixedEquationAlgorithm compile error: {:?}", e);
        }
    }
}

#[test]
fn test_complex_type_causality() {
    // Test ComplexGain - simple Complex-like record block with input and output
    // Uses MyComplexInput = input MyComplex and MyComplexOutput = output MyComplex type aliases
    // u (MyComplexInput) -> u.re, u.im are inputs (not unknowns)
    // y (MyComplexOutput) -> y.re, y.im are unknowns
    // 2 equations from assignments, 2 unknowns (y.re, y.im)
    let result = compile_fixture("complex_causality", "ComplexCausality.ComplexGain").unwrap();
    assert!(
        result.is_balanced(),
        "ComplexGain should be balanced when causality is propagated: {} eq, {} unk, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_inputs
    );
    // u.re, u.im should be inputs (2 inputs)
    assert_eq!(
        result.balance.num_inputs, 2,
        "Should have 2 inputs (u.re, u.im)"
    );
    // y.re, y.im should be unknowns (2 unknowns)
    assert_eq!(
        result.balance.num_unknowns, 2,
        "Should have 2 unknowns (y.re, y.im)"
    );

    // Test ComplexArrayInput - array of Complex-like record inputs
    // u[m] (MyComplexInput array, m=3) -> u.re[3], u.im[3] as array components
    // y[2] (output array) -> 2 unknowns
    // 2 equations from sum assignments
    let result =
        compile_fixture("complex_causality", "ComplexCausality.ComplexArrayInput").unwrap();
    assert!(
        result.is_balanced(),
        "ComplexArrayInput should be balanced when array causality is propagated: {} eq, {} unk, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_inputs
    );
    // u.re[3], u.im[3] arrays are inputs - each array is counted as size*1, so 3+3=6 inputs
    assert_eq!(
        result.balance.num_inputs, 6,
        "Should have 6 inputs (u.re[3], u.im[3])"
    );
    // y[2] should be unknowns (2 unknowns)
    assert_eq!(
        result.balance.num_unknowns, 2,
        "Should have 2 unknowns (y[2])"
    );

    // Test ComplexAdd - Complex-typed components with binding expressions (like MSL ComplexSI2SO)
    // This tests that binding equations for Complex-typed protected variables get expanded properly.
    // u1, u2 (MyComplexInput) -> 4 inputs (u1.re, u1.im, u2.re, u2.im)
    // y (MyComplexOutput) -> 2 unknowns (y.re, y.im)
    // u1Internal, u2Internal are protected with binding u1Internal = u1, u2Internal = u2
    // These should expand to: u1Internal.re = u1.re, u1Internal.im = u1.im (etc.)
    // So we have 4 more unknowns (u1Internal.re, u1Internal.im, u2Internal.re, u2Internal.im)
    // Total: 6 unknowns, 4 inputs
    // Equations: 2 from y = ..., and 4 from binding expansion = 6 total
    let result = compile_fixture("complex_causality", "ComplexCausality.ComplexAdd").unwrap();
    println!(
        "ComplexAdd: {} eq, {} unk, {} inputs",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "ComplexAdd should be balanced when Complex binding equations are expanded: {} eq, {} unk, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_inputs
    );
    // u1.re, u1.im, u2.re, u2.im should be inputs (4 inputs)
    assert_eq!(
        result.balance.num_inputs, 4,
        "Should have 4 inputs (u1.re, u1.im, u2.re, u2.im)"
    );
    // y.re, y.im, u1Internal.re, u1Internal.im, u2Internal.re, u2Internal.im should be unknowns (6 unknowns)
    assert_eq!(result.balance.num_unknowns, 6, "Should have 6 unknowns");
    // 6 equations: 2 from y = ..., and 4 from binding expansion
    assert_eq!(result.balance.num_equations, 6, "Should have 6 equations");

    // Test ComplexAddConditional - like ComplexAdd but with conditional binding expressions
    // u1Internal = if useConjugateInput1 then MyComplex(u1.re, -u1.im) else u1
    // This tests that if-expressions and record constructors are handled in Complex expansion
    let result = compile_fixture(
        "complex_causality",
        "ComplexCausality.ComplexAddConditional",
    )
    .unwrap();
    println!(
        "ComplexAddConditional: {} eq, {} unk, {} inputs",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "ComplexAddConditional should be balanced: {} eq, {} unk, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_inputs
    );
    assert_eq!(result.balance.num_inputs, 4, "Should have 4 inputs");
    assert_eq!(result.balance.num_unknowns, 6, "Should have 6 unknowns");
    assert_eq!(result.balance.num_equations, 6, "Should have 6 equations");

    // Test BuiltinComplexAdd - uses builtin Complex type like MSL
    // This tests that the builtin Complex works the same as our custom MyComplex
    let result =
        compile_fixture("complex_causality", "ComplexCausality.BuiltinComplexAdd").unwrap();
    println!(
        "BuiltinComplexAdd: {} eq, {} unk, {} inputs",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "BuiltinComplexAdd should be balanced: {} eq, {} unk, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_inputs
    );
    assert_eq!(result.balance.num_inputs, 4, "Should have 4 inputs");
    assert_eq!(result.balance.num_unknowns, 6, "Should have 6 unknowns");
    assert_eq!(result.balance.num_equations, 6, "Should have 6 equations");

    // Test ParenthesizedComplexAdd - exactly like MSL's ComplexSI2SO pattern
    // Binding: Complex u1Internal = (if useConjugateInput1 then u2 else u1);
    let result = compile_fixture(
        "complex_causality",
        "ComplexCausality.ParenthesizedComplexAdd",
    )
    .unwrap();
    println!(
        "ParenthesizedComplexAdd: {} eq, {} unk, {} inputs",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "ParenthesizedComplexAdd should be balanced: {} eq, {} unk, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_inputs
    );
    assert_eq!(result.balance.num_inputs, 4, "Should have 4 inputs");
    assert_eq!(result.balance.num_unknowns, 6, "Should have 6 unknowns");
    assert_eq!(result.balance.num_equations, 6, "Should have 6 equations");

    // Test ConjComplexAdd - exactly like MSL's ComplexMath.Add with conj() function
    // Binding: Complex u1Internal = (if useConjugateInput1 then conj(u1) else u1);
    // This tests function inlining combined with Complex expansion
    let result = compile_fixture("complex_causality", "ComplexCausality.ConjComplexAdd").unwrap();
    println!(
        "ConjComplexAdd: {} eq, {} unk, {} inputs",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "ConjComplexAdd should be balanced: {} eq, {} unk, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_inputs
    );
    assert_eq!(result.balance.num_inputs, 4, "Should have 4 inputs");
    assert_eq!(result.balance.num_unknowns, 6, "Should have 6 unknowns");
    assert_eq!(result.balance.num_equations, 6, "Should have 6 equations");
}

#[test]
fn test_conditional_input_causality() {
    // Test ConditionalInputBlock - conditional input with type alias
    // When use_numberPort=true (default), numberPort is included and should be an input
    // showNumber is an output (unknown), 1 equation from if-equation
    let result = compile_fixture(
        "conditional_input",
        "ConditionalInput.ConditionalInputBlock",
    )
    .unwrap();
    println!(
        "ConditionalInputBlock: {} eq, {} unk, {} inputs",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "ConditionalInputBlock should be balanced when causality is propagated: {} eq, {} unk, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_inputs
    );
    // numberPort should be an input (type alias RealInput = input Real)
    assert_eq!(
        result.balance.num_inputs, 1,
        "Should have 1 input (numberPort)"
    );
    // showNumber should be an unknown (output)
    assert_eq!(
        result.balance.num_unknowns, 1,
        "Should have 1 unknown (showNumber)"
    );

    // Test ConditionalInputBlockFalse - conditional input with use_numberPort=false
    // When use_numberPort=false, numberPort is not included
    // showNumber is an output (unknown), 1 equation from else branch
    let result = compile_fixture(
        "conditional_input",
        "ConditionalInput.ConditionalInputBlockFalse",
    )
    .unwrap();
    println!(
        "ConditionalInputBlockFalse: {} eq, {} unk, {} inputs",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "ConditionalInputBlockFalse should be balanced: {} eq, {} unk, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_inputs
    );
    // No inputs when use_numberPort=false (numberPort is filtered out)
    assert_eq!(
        result.balance.num_inputs, 0,
        "Should have 0 inputs (numberPort filtered out)"
    );
    // showNumber should be an unknown (output)
    assert_eq!(
        result.balance.num_unknowns, 1,
        "Should have 1 unknown (showNumber)"
    );
}

/// Test expression blocks (RealExpression, BooleanExpression, IntegerExpression style)
/// These blocks have output connectors with binding expressions but no equation section.
///
/// KNOWN LIMITATION: Binding equations for outputs with default values (0.0, 0, false)
/// are NOT currently generated. This is because the parser sets default start values
/// for all Real/Integer/Boolean components, and we can't reliably distinguish between
/// explicit bindings like `RealOutput y = 0.0` and parser defaults.
///
/// The MSL Expression blocks (RealExpression, BooleanExpression, IntegerExpression)
/// will appear as under-determined until this is fixed. The fix requires tracking
/// whether a binding was explicitly written in source code vs generated as a parser default.
#[test]
fn test_expression_blocks() {
    // Test RealExpressionLike - output with default binding, no equation section
    // The binding generates an equation, making this balanced
    let result =
        compile_fixture("expression_blocks", "ExpressionBlocks.RealExpressionLike").unwrap();
    println!(
        "RealExpressionLike: {} eq, {} unk",
        result.balance.num_equations, result.balance.num_unknowns
    );
    assert!(
        result.is_balanced(),
        "RealExpressionLike should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );
    assert_eq!(
        result.balance.num_equations, 1,
        "Should have 1 equation (from binding)"
    );
    assert_eq!(result.balance.num_unknowns, 1, "Should have 1 unknown (y)");

    // Test RealExpressionNonDefault - output with non-default binding (1.5)
    // This DOES work because 1.5 is not a "default value" (0.0/0/false)
    let result = compile_fixture(
        "expression_blocks",
        "ExpressionBlocks.RealExpressionNonDefault",
    )
    .unwrap();
    println!(
        "RealExpressionNonDefault: {} eq, {} unk",
        result.balance.num_equations, result.balance.num_unknowns
    );
    assert!(
        result.is_balanced(),
        "RealExpressionNonDefault should be balanced: {} eq, {} unk",
        result.balance.num_equations,
        result.balance.num_unknowns
    );

    // Test OutputWithEquation - should NOT double-count binding and equation
    // KNOWN ISSUE: Currently double-counts (2 eq) because binding and explicit equation both count
    // The explicit equation `y = 1.0` should override the binding `y = 0.0`
    let result =
        compile_fixture("expression_blocks", "ExpressionBlocks.OutputWithEquation").unwrap();
    println!(
        "OutputWithEquation: {} eq, {} unk (KNOWN ISSUE: should be 1 eq)",
        result.balance.num_equations, result.balance.num_unknowns
    );
    // TODO: Fix this - explicit equations should override bindings
    assert_eq!(
        result.balance.num_equations, 2,
        "Currently 2 equations (needs fix)"
    );

    // Test OutputNoBind - output without binding should be unbalanced (under-determined)
    let result = compile_fixture("expression_blocks", "ExpressionBlocks.OutputNoBind").unwrap();
    println!(
        "OutputNoBind: {} eq, {} unk, {} ext conn",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_external_connectors
    );
    assert_eq!(
        result.balance.status,
        rumoca::dae::balance::BalanceStatus::Unbalanced,
        "OutputNoBind should be Unbalanced (under-determined - missing equation for y)"
    );
    assert_eq!(result.balance.num_equations, 0, "Should have 0 equations");
    assert_eq!(result.balance.num_unknowns, 1, "Should have 1 unknown (y)");
}

/// Test DeMultiplex-style blocks where input arrays appear on LHS of equations.
/// This tests the pattern from MSL's Modelica.Blocks.Routing.DeMultiplex blocks.
///
/// The key issue is that equations like `[u] = [y1; y2]` have the INPUT u on the LHS.
/// This should NOT cause u to become an algebraic variable - it should remain an input.
#[test]
fn test_demultiplex_pattern() {
    // Test SimplePassthrough - input on LHS with u = y pattern
    // u is input, y is output
    // 1 equation, 1 unknown (y), 1 input (u)
    let result = compile_fixture(
        "demultiplex_balance",
        "DemultiplexBalance.SimplePassthrough",
    )
    .unwrap();
    println!(
        "SimplePassthrough: {} eq, {} unk, {} inputs",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "SimplePassthrough should be balanced: {} eq, {} unk, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_inputs
    );
    assert_eq!(result.balance.num_equations, 1, "Should have 1 equation");
    assert_eq!(result.balance.num_unknowns, 1, "Should have 1 unknown (y)");
    assert_eq!(result.balance.num_inputs, 1, "Should have 1 input (u)");

    // Test SimplePassthroughNormal - output on LHS (normal pattern)
    // For comparison - this is the conventional way to write the equation
    let result = compile_fixture(
        "demultiplex_balance",
        "DemultiplexBalance.SimplePassthroughNormal",
    )
    .unwrap();
    println!(
        "SimplePassthroughNormal: {} eq, {} unk, {} inputs",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "SimplePassthroughNormal should be balanced: {} eq, {} unk, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_inputs
    );

    // Test DeMultiplex2Like - array input on LHS with [u] = [y1; y2] pattern
    // u[2] is input array, y1[1] and y2[1] are output arrays
    // 2 equations from the matrix equation, 2 unknowns (y1[1], y2[1]), 2 inputs (u[1], u[2])
    let result =
        compile_fixture("demultiplex_balance", "DemultiplexBalance.DeMultiplex2Like").unwrap();
    println!(
        "DeMultiplex2Like: {} eq, {} unk, {} inputs",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "DeMultiplex2Like should be balanced: {} eq, {} unk, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_inputs
    );
    assert_eq!(result.balance.num_equations, 2, "Should have 2 equations");
    assert_eq!(
        result.balance.num_unknowns, 2,
        "Should have 2 unknowns (y1[1], y2[1])"
    );
    assert_eq!(
        result.balance.num_inputs, 2,
        "Should have 2 inputs (u[1], u[2])"
    );

    // Test DeMultiplex2Explicit - explicit element-wise equations
    // y1[1] = u[1]; y2[1] = u[2];
    // Should have same balance as DeMultiplex2Like
    let result = compile_fixture(
        "demultiplex_balance",
        "DemultiplexBalance.DeMultiplex2Explicit",
    )
    .unwrap();
    println!(
        "DeMultiplex2Explicit: {} eq, {} unk, {} inputs",
        result.balance.num_equations, result.balance.num_unknowns, result.balance.num_inputs
    );
    assert!(
        result.is_balanced(),
        "DeMultiplex2Explicit should be balanced: {} eq, {} unk, {} inputs",
        result.balance.num_equations,
        result.balance.num_unknowns,
        result.balance.num_inputs
    );
    assert_eq!(result.balance.num_equations, 2, "Should have 2 equations");
    assert_eq!(result.balance.num_unknowns, 2, "Should have 2 unknowns");
    assert_eq!(result.balance.num_inputs, 2, "Should have 2 inputs");
}