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
//! MLS §10: High Priority Array Tests
//!
//! This module tests high priority normative requirements:
//! - §10.5: Array indexing bounds checking
//! - §10.3: Array concatenation and slicing
//! - §10.7: Empty array handling
//! - §10.1: Array dimension compatibility
//!
//! Reference: https://specification.modelica.org/master/arrays.html

use crate::spec::{expect_failure, expect_success};

// ============================================================================
// §10.5 ARRAY INDEXING BOUNDS
// ============================================================================

/// MLS §10.5: Array index bounds checking
mod array_bounds {
    use super::*;

    /// MLS: "Array index must be within bounds"
    #[test]
    fn mls_10_5_index_out_of_bounds_high() {
        expect_failure(
            r#"
            model Test
                Real x[3] = {1, 2, 3};
                Real y = x[4];
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// MLS: "Array index must be within bounds"
    #[test]
    fn mls_10_5_index_out_of_bounds_zero() {
        expect_failure(
            r#"
            model Test
                Real x[3] = {1, 2, 3};
                Real y = x[0];
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// MLS: "Array index must be within bounds"
    #[test]
    fn mls_10_5_index_negative() {
        expect_failure(
            r#"
            model Test
                Real x[3] = {1, 2, 3};
                Real y = x[-1];
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// MLS: "2D array index out of bounds"
    #[test]
    fn mls_10_5_2d_index_out_of_bounds() {
        expect_failure(
            r#"
            model Test
                Real A[2, 3] = {{1, 2, 3}, {4, 5, 6}};
                Real y = A[3, 1];
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// Valid: Index within bounds
    #[test]
    fn mls_10_5_valid_indexing() {
        expect_success(
            r#"
            model Test
                Real x[3] = {1, 2, 3};
                Real a = x[1];
                Real b = x[2];
                Real c = x[3];
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// Valid: 2D indexing within bounds
    #[test]
    fn mls_10_5_valid_2d_indexing() {
        expect_success(
            r#"
            model Test
                Real A[2, 3] = {{1, 2, 3}, {4, 5, 6}};
                Real a = A[1, 1];
                Real b = A[2, 3];
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// Valid: Dynamic indexing (bounds check at runtime)
    #[test]
    fn mls_10_5_dynamic_indexing() {
        expect_success(
            r#"
            model Test
                parameter Integer i = 2;
                Real x[3] = {1, 2, 3};
                Real y = x[i];
            equation
            end Test;
            "#,
            "Test",
        );
    }
}

// ============================================================================
// §10.3 ARRAY SLICING
// ============================================================================

/// MLS §10.3: Array slicing operations
mod array_slicing {
    use super::*;

    /// MLS: "Colon selects entire dimension"
    #[test]
    #[ignore = "Array slicing with colon not yet fully supported"]
    fn mls_10_3_colon_slice() {
        expect_success(
            r#"
            model Test
                Real A[2, 3] = {{1, 2, 3}, {4, 5, 6}};
                Real row[3] = A[1, :];
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// MLS: "Range slice selects subset"
    #[test]
    #[ignore = "Array slicing with range not yet fully supported"]
    fn mls_10_3_range_slice() {
        expect_success(
            r#"
            model Test
                Real x[5] = {1, 2, 3, 4, 5};
                Real y[3] = x[2:4];
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// MLS: "Column extraction"
    #[test]
    #[ignore = "Array column extraction not yet fully supported"]
    fn mls_10_3_column_slice() {
        expect_success(
            r#"
            model Test
                Real A[3, 2] = {{1, 2}, {3, 4}, {5, 6}};
                Real col[3] = A[:, 1];
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// MLS: "Submatrix extraction"
    #[test]
    #[ignore = "Submatrix extraction not yet fully supported"]
    fn mls_10_3_submatrix_slice() {
        expect_success(
            r#"
            model Test
                Real A[4, 4] = {{1,2,3,4},{5,6,7,8},{9,10,11,12},{13,14,15,16}};
                Real B[2, 2] = A[2:3, 2:3];
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// Valid: Simple array access (not slicing)
    #[test]
    fn mls_10_3_simple_access() {
        expect_success(
            r#"
            model Test
                Real A[2, 3] = {{1, 2, 3}, {4, 5, 6}};
                Real x = A[1, 2];
            equation
            end Test;
            "#,
            "Test",
        );
    }
}

// ============================================================================
// §10.7 EMPTY ARRAYS
// ============================================================================

/// MLS §10.7: Empty array handling
mod empty_arrays {
    use super::*;

    /// MLS: "Empty array with zeros(0)"
    #[test]
    fn mls_10_7_zeros_empty() {
        expect_success(
            r#"
            model Test
                Real x[0] = zeros(0);
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// MLS: "Empty array with ones(0)"
    #[test]
    fn mls_10_7_ones_empty() {
        expect_success(
            r#"
            model Test
                Real x[0] = ones(0);
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// MLS: "Sum of empty array is 0"
    #[test]
    fn mls_10_7_sum_empty() {
        expect_success(
            r#"
            model Test
                Real x[0];
                Real s = sum(x);
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// MLS: "Product of empty array is 1"
    #[test]
    fn mls_10_7_product_empty() {
        expect_success(
            r#"
            model Test
                Real x[0];
                Real p = product(x);
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// MLS: "For-loop over empty array iterates zero times"
    #[test]
    fn mls_10_7_for_empty() {
        expect_success(
            r#"
            model Test
                Real x[0];
                Real s = 0;
            equation
                for i in 1:0 loop
                    s = s + 1;
                end for;
            end Test;
            "#,
            "Test",
        );
    }

    /// Valid: Non-empty array operations
    #[test]
    fn mls_10_7_nonempty_operations() {
        expect_success(
            r#"
            model Test
                Real x[3] = {1, 2, 3};
                Real s = sum(x);
                Real p = product(x);
            equation
            end Test;
            "#,
            "Test",
        );
    }
}

// ============================================================================
// §10.1 DIMENSION COMPATIBILITY
// ============================================================================

/// MLS §10.1: Array dimension compatibility
mod dimension_compatibility {
    use super::*;

    /// MLS: "Array assignment requires same dimensions"
    #[test]
    fn mls_10_1_dimension_mismatch_assignment() {
        expect_failure(
            r#"
            model Test
                Real x[3] = {1, 2, 3};
                Real y[4] = x;
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// MLS: "Array addition requires same dimensions"
    #[test]
    #[ignore = "Array operation dimension check not yet implemented"]
    fn mls_10_1_dimension_mismatch_add() {
        expect_failure(
            r#"
            model Test
                Real a[3] = {1, 2, 3};
                Real b[4] = {1, 2, 3, 4};
                Real c[3] = a + b;
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// MLS: "2D array dimension mismatch"
    #[test]
    fn mls_10_1_2d_dimension_mismatch() {
        expect_failure(
            r#"
            model Test
                Real A[2, 3] = {{1, 2, 3}, {4, 5, 6}};
                Real B[3, 2] = A;
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// Valid: Same dimension operations
    #[test]
    fn mls_10_1_same_dimensions() {
        expect_success(
            r#"
            model Test
                Real a[3] = {1, 2, 3};
                Real b[3] = {4, 5, 6};
                Real c[3] = a + b;
                Real d[3] = a .* b;
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// Valid: Scalar-array operations
    #[test]
    fn mls_10_1_scalar_array_ops() {
        expect_success(
            r#"
            model Test
                Real k = 2;
                Real a[3] = {1, 2, 3};
                Real b[3] = k * a;
                Real c[3] = a * k;
                Real d[3] = a + k;
            equation
            end Test;
            "#,
            "Test",
        );
    }
}

// ============================================================================
// §10.4 ARRAY CONSTRUCTORS
// ============================================================================

/// MLS §10.4: Array constructor requirements
mod array_constructors {
    use super::*;

    /// MLS: "Array elements must have same type"
    #[test]
    #[ignore = "Array element type checking not yet implemented"]
    fn mls_10_4_mixed_types() {
        expect_failure(
            r#"
            model Test
                Real x[3] = {1, "hello", true};
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// MLS: "Nested arrays must have consistent dimensions"
    #[test]
    #[ignore = "Nested array dimension checking not yet implemented"]
    fn mls_10_4_inconsistent_nested() {
        expect_failure(
            r#"
            model Test
                Real A[2, 3] = {{1, 2, 3}, {4, 5}};
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// Valid: Consistent array constructor
    #[test]
    fn mls_10_4_consistent_constructor() {
        expect_success(
            r#"
            model Test
                Real x[3] = {1, 2, 3};
                Real A[2, 3] = {{1, 2, 3}, {4, 5, 6}};
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// Valid: Array comprehension
    #[test]
    fn mls_10_4_array_comprehension() {
        expect_success(
            r#"
            model Test
                Real x[5] = {i^2 for i in 1:5};
            equation
            end Test;
            "#,
            "Test",
        );
    }

    /// Valid: 2D comprehension
    #[test]
    fn mls_10_4_2d_comprehension() {
        expect_success(
            r#"
            model Test
                Real A[3, 3] = {i * j for i in 1:3, j in 1:3};
            equation
            end Test;
            "#,
            "Test",
        );
    }
}