package kappa-library

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file alg_expr_extra.ml

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
(******************************************************************************)
(*  _  __ * The Kappa Language                                                *)
(* | |/ / * Copyright 2010-2020 CNRS - Harvard Medical School - INRIA - IRIF  *)
(* | ' /  *********************************************************************)
(* | . \  * This file is distributed under the terms of the                   *)
(* |_|\_\ * GNU Lesser General Public License Version 3                       *)
(******************************************************************************)

let divide_expr_by_int e i =
  Loc.annot_with_dummy
    (Alg_expr.BIN_ALG_OP
       (Operator.DIV, e, Loc.annot_with_dummy (Alg_expr.CONST (Nbr.I i))))

type ('a, 'b) corrected_rate_const = {
  num: Nbr.t;
  den: Nbr.t;
  var: ('a, 'b) Alg_expr.e Loc.annoted option;
}

let rec simplify ?(root_only = false) expr =
  match expr with
  | Alg_expr.BIN_ALG_OP (op, a, b), loc ->
    let a, b =
      if root_only then
        a, b
      else
        simplify a, simplify b
    in
    let root_only = true in
    (match op with
    | Operator.SUM ->
      (match a, b with
      | (Alg_expr.CONST a, _), (Alg_expr.CONST b, _) ->
        Alg_expr.CONST (Nbr.add a b), loc
      | (Alg_expr.CONST a, _), _ when Nbr.is_zero a -> b
      | _, (Alg_expr.CONST b, _) when Nbr.is_zero b -> a
      | ( ( ( Alg_expr.CONST _ | Alg_expr.ALG_VAR _ | Alg_expr.BIN_ALG_OP _
            | Alg_expr.UN_ALG_OP _ | Alg_expr.STATE_ALG_OP _
            | Alg_expr.KAPPA_INSTANCE _ | Alg_expr.TOKEN_ID _ | Alg_expr.IF _
            | Alg_expr.DIFF_KAPPA_INSTANCE _ | Alg_expr.DIFF_TOKEN _ ),
            _ ),
          ( ( Alg_expr.CONST _ | Alg_expr.ALG_VAR _ | Alg_expr.BIN_ALG_OP _
            | Alg_expr.UN_ALG_OP _ | Alg_expr.STATE_ALG_OP _
            | Alg_expr.KAPPA_INSTANCE _ | Alg_expr.TOKEN_ID _ | Alg_expr.IF _
            | Alg_expr.DIFF_KAPPA_INSTANCE _ | Alg_expr.DIFF_TOKEN _ ),
            _ ) ) ->
        Alg_expr.BIN_ALG_OP (op, a, b), loc)
    | Operator.MINUS ->
      (match a, b with
      | (Alg_expr.CONST a, _), (Alg_expr.CONST b, _) ->
        Alg_expr.CONST (Nbr.sub a b), loc
      | _, (Alg_expr.CONST b, _) when Nbr.is_zero b -> a
      | ( ( ( Alg_expr.CONST _ | Alg_expr.ALG_VAR _ | Alg_expr.BIN_ALG_OP _
            | Alg_expr.UN_ALG_OP _ | Alg_expr.STATE_ALG_OP _
            | Alg_expr.KAPPA_INSTANCE _ | Alg_expr.TOKEN_ID _ | Alg_expr.IF _
            | Alg_expr.DIFF_TOKEN _ | Alg_expr.DIFF_KAPPA_INSTANCE _ ),
            _ ),
          ( ( Alg_expr.CONST _ | Alg_expr.ALG_VAR _ | Alg_expr.BIN_ALG_OP _
            | Alg_expr.UN_ALG_OP _ | Alg_expr.STATE_ALG_OP _
            | Alg_expr.KAPPA_INSTANCE _ | Alg_expr.TOKEN_ID _ | Alg_expr.IF _
            | Alg_expr.DIFF_KAPPA_INSTANCE _ | Alg_expr.DIFF_TOKEN _ ),
            _ ) ) ->
        Alg_expr.BIN_ALG_OP (op, a, b), loc)
    | Operator.MULT ->
      (match a, b with
      | (Alg_expr.CONST a, _), (Alg_expr.CONST b, _) ->
        Alg_expr.CONST (Nbr.mult a b), loc
      | (Alg_expr.CONST a', _), _ when Nbr.is_equal a' Nbr.zero -> a
      | _, (Alg_expr.CONST b', _) when Nbr.is_equal b' Nbr.zero -> b
      | (Alg_expr.CONST a, _), _ when Nbr.is_equal a Nbr.one -> b
      | _, (Alg_expr.CONST b, _) when Nbr.is_equal b Nbr.one -> a
      | ( (Alg_expr.CONST a, loc_cst),
          ( Alg_expr.BIN_ALG_OP (Operator.MULT, (Alg_expr.CONST b, _), c), _
          | Alg_expr.BIN_ALG_OP (Operator.MULT, c, (Alg_expr.CONST b, _)), _ ) )
      | ( ( Alg_expr.BIN_ALG_OP (Operator.MULT, (Alg_expr.CONST b, _), c), _
          | Alg_expr.BIN_ALG_OP (Operator.MULT, c, (Alg_expr.CONST b, _)), _ ),
          (Alg_expr.CONST a, loc_cst) ) ->
        (* a*(b*c) -> (a*b)*c if a & b are constant *)
        simplify ~root_only
          ( Alg_expr.BIN_ALG_OP
              (Operator.MULT, (Alg_expr.CONST (Nbr.mult a b), loc_cst), c),
            loc )
      | ( (Alg_expr.CONST a, loc_cst),
          (Alg_expr.BIN_ALG_OP (Operator.DIV, (Alg_expr.CONST b, _), c), _) )
      | ( (Alg_expr.BIN_ALG_OP (Operator.DIV, (Alg_expr.CONST b, _), c), _),
          (Alg_expr.CONST a, loc_cst) ) ->
        (* a*(b/c) -> (a*b)/c if a & b are constant *)
        simplify ~root_only
          ( Alg_expr.BIN_ALG_OP
              (Operator.DIV, (Alg_expr.CONST (Nbr.mult a b), loc_cst), c),
            loc )
      | ( (Alg_expr.BIN_ALG_OP (Operator.DIV, b, (Alg_expr.CONST c, _)), _),
          (Alg_expr.CONST a, loc_cst) )
      | ( (Alg_expr.CONST a, loc_cst),
          (Alg_expr.BIN_ALG_OP (Operator.DIV, b, (Alg_expr.CONST c, _)), _) )
        when (not (Nbr.is_zero c)) && Nbr.is_zero (Nbr.rem a c) ->
        (* a*(b/c) -> ((a/c)*b) if a & c are constant  and c|a *)
        simplify ~root_only
          ( Alg_expr.BIN_ALG_OP
              ( Operator.MULT,
                (Alg_expr.CONST (Nbr.internal_div a c), loc_cst),
                b ),
            loc )
      | ( ( ( Alg_expr.CONST _ | Alg_expr.ALG_VAR _
            | Alg_expr.BIN_ALG_OP
                ( ( Operator.DIV | Operator.MULT | Operator.SUM | Operator.MINUS
                  | Operator.POW | Operator.MODULO | Operator.MIN | Operator.MAX
                    ),
                  _,
                  _ )
            | Alg_expr.UN_ALG_OP _ | Alg_expr.STATE_ALG_OP _
            | Alg_expr.KAPPA_INSTANCE _ | Alg_expr.TOKEN_ID _ | Alg_expr.IF _
            | Alg_expr.DIFF_KAPPA_INSTANCE _ | Alg_expr.DIFF_TOKEN _ ),
            _ ),
          ( ( Alg_expr.CONST _ | Alg_expr.ALG_VAR _ | Alg_expr.BIN_ALG_OP _
            | Alg_expr.UN_ALG_OP _ | Alg_expr.STATE_ALG_OP _
            | Alg_expr.KAPPA_INSTANCE _ | Alg_expr.TOKEN_ID _ | Alg_expr.IF _
            | Alg_expr.DIFF_KAPPA_INSTANCE _ | Alg_expr.DIFF_TOKEN _ ),
            _ ) ) ->
        Alg_expr.BIN_ALG_OP (op, a, b), loc)
    | Operator.DIV ->
      (match a, b with
      | _, (Alg_expr.CONST b, _) when Nbr.is_equal b Nbr.one -> a
      | (Alg_expr.CONST a, _), (Alg_expr.CONST b, _)
        when (not (Nbr.is_zero b)) && Nbr.is_zero (Nbr.rem a b) ->
        Alg_expr.CONST (Nbr.internal_div a b), loc
      | ( ( Alg_expr.BIN_ALG_OP (Operator.MULT, (Alg_expr.CONST a, _), b),
            loc_bin ),
          (Alg_expr.CONST c, _) )
        when Nbr.is_zero (Nbr.rem a c) ->
        (* (a*b/c) & c|a -> ((c/a)*b)*)
        simplify ~root_only
          ( Alg_expr.BIN_ALG_OP
              ( Operator.MULT,
                (Alg_expr.CONST (Nbr.internal_div c a), loc_bin),
                b ),
            loc )
      | ( ( Alg_expr.BIN_ALG_OP (Operator.MULT, b, (Alg_expr.CONST a, _)),
            loc_bin ),
          (Alg_expr.CONST c, _) )
        when Nbr.is_zero (Nbr.rem a c) ->
        (* (b*a/c) & c|a -> ((c/a)*b)*)
        simplify ~root_only
          ( Alg_expr.BIN_ALG_OP
              ( Operator.MULT,
                (Alg_expr.CONST (Nbr.internal_div c a), loc_bin),
                b ),
            loc )
      | ( a,
          ( Alg_expr.BIN_ALG_OP
              (Operator.DIV, (Alg_expr.CONST b, _), (Alg_expr.CONST c, _)),
            locdiv ) ) ->
        (* (a/b/c) -> a/(b*c) *)
        simplify ~root_only
          ( Alg_expr.BIN_ALG_OP
              (Operator.DIV, a, Alg_expr.(CONST (Nbr.mult b c), locdiv)),
            loc )
      | ( ( ( Alg_expr.CONST _ | Alg_expr.ALG_VAR _
            | Alg_expr.BIN_ALG_OP
                ( ( Operator.DIV | Operator.MULT | Operator.SUM | Operator.MINUS
                  | Operator.POW | Operator.MODULO | Operator.MIN | Operator.MAX
                    ),
                  _,
                  _ )
            | Alg_expr.UN_ALG_OP _ | Alg_expr.STATE_ALG_OP _
            | Alg_expr.KAPPA_INSTANCE _ | Alg_expr.TOKEN_ID _ | Alg_expr.IF _
            | Alg_expr.DIFF_KAPPA_INSTANCE _ | Alg_expr.DIFF_TOKEN _ ),
            _ ),
          ( ( Alg_expr.CONST _ | Alg_expr.ALG_VAR _ | Alg_expr.BIN_ALG_OP _
            | Alg_expr.UN_ALG_OP _ | Alg_expr.STATE_ALG_OP _
            | Alg_expr.KAPPA_INSTANCE _ | Alg_expr.TOKEN_ID _ | Alg_expr.IF _
            | Alg_expr.DIFF_KAPPA_INSTANCE _ | Alg_expr.DIFF_TOKEN _ ),
            _ ) ) ->
        Alg_expr.BIN_ALG_OP (op, a, b), loc)
    | Operator.POW ->
      (match a, b with
      | _, (Alg_expr.CONST b, _) when Nbr.is_equal b Nbr.one -> a
      | (Alg_expr.CONST a, _), (Alg_expr.CONST b, _)
        when Nbr.is_smaller a (Nbr.I 11)
             && Nbr.is_greater b Nbr.zero
             && Nbr.is_smaller b (Nbr.I 11) ->
        Alg_expr.CONST (Nbr.pow a b), loc
      | ( ( ( Alg_expr.CONST _ | Alg_expr.ALG_VAR _ | Alg_expr.BIN_ALG_OP _
            | Alg_expr.UN_ALG_OP _ | Alg_expr.STATE_ALG_OP _
            | Alg_expr.KAPPA_INSTANCE _ | Alg_expr.TOKEN_ID _ | Alg_expr.IF _
            | Alg_expr.DIFF_KAPPA_INSTANCE _ | Alg_expr.DIFF_TOKEN _ ),
            _ ),
          ( ( Alg_expr.CONST _ | Alg_expr.ALG_VAR _ | Alg_expr.BIN_ALG_OP _
            | Alg_expr.UN_ALG_OP _ | Alg_expr.STATE_ALG_OP _
            | Alg_expr.KAPPA_INSTANCE _ | Alg_expr.TOKEN_ID _ | Alg_expr.IF _
            | Alg_expr.DIFF_KAPPA_INSTANCE _ | Alg_expr.DIFF_TOKEN _ ),
            _ ) ) ->
        Alg_expr.BIN_ALG_OP (op, a, b), loc)
    | Operator.MODULO ->
      (match a, b with
      | _, (Alg_expr.CONST b, _) when Nbr.is_equal b Nbr.one -> a
      | ( ( ( Alg_expr.CONST _ | Alg_expr.ALG_VAR _ | Alg_expr.BIN_ALG_OP _
            | Alg_expr.UN_ALG_OP _ | Alg_expr.STATE_ALG_OP _
            | Alg_expr.KAPPA_INSTANCE _ | Alg_expr.TOKEN_ID _ | Alg_expr.IF _
            | Alg_expr.DIFF_KAPPA_INSTANCE _ | Alg_expr.DIFF_TOKEN _ ),
            _ ),
          ( ( Alg_expr.CONST _ | Alg_expr.ALG_VAR _ | Alg_expr.BIN_ALG_OP _
            | Alg_expr.UN_ALG_OP _ | Alg_expr.STATE_ALG_OP _
            | Alg_expr.KAPPA_INSTANCE _ | Alg_expr.TOKEN_ID _ | Alg_expr.IF _
            | Alg_expr.DIFF_KAPPA_INSTANCE _ | Alg_expr.DIFF_TOKEN _ ),
            _ ) ) ->
        Alg_expr.BIN_ALG_OP (op, a, b), loc)
    | Operator.MIN | Operator.MAX -> Alg_expr.BIN_ALG_OP (op, a, b), loc)
  | Alg_expr.UN_ALG_OP (op, a), loc ->
    let a = simplify a in
    (match op with
    | Operator.UMINUS ->
      (match a with
      | Alg_expr.CONST a, _ -> Alg_expr.CONST (Nbr.neg a), loc
      | ( ( Alg_expr.ALG_VAR _ | Alg_expr.BIN_ALG_OP _ | Alg_expr.UN_ALG_OP _
          | Alg_expr.STATE_ALG_OP _ | Alg_expr.KAPPA_INSTANCE _
          | Alg_expr.TOKEN_ID _ | Alg_expr.IF _ | Alg_expr.DIFF_KAPPA_INSTANCE _
          | Alg_expr.DIFF_TOKEN _ ),
          _ ) ->
        Alg_expr.UN_ALG_OP (op, a), loc)
    | Operator.COSINUS | Operator.EXP ->
      (match a with
      | Alg_expr.CONST a, _ when Nbr.is_zero a -> Alg_expr.CONST Nbr.one, loc
      | ( ( Alg_expr.CONST _ | Alg_expr.ALG_VAR _ | Alg_expr.BIN_ALG_OP _
          | Alg_expr.UN_ALG_OP _ | Alg_expr.STATE_ALG_OP _
          | Alg_expr.KAPPA_INSTANCE _ | Alg_expr.TOKEN_ID _ | Alg_expr.IF _
          | Alg_expr.DIFF_KAPPA_INSTANCE _ | Alg_expr.DIFF_TOKEN _ ),
          _ ) ->
        Alg_expr.UN_ALG_OP (op, a), loc)
    | Operator.SINUS | Operator.TAN ->
      (match a with
      | Alg_expr.CONST a, _ when Nbr.is_equal a Nbr.one ->
        Alg_expr.CONST Nbr.zero, loc
      | ( ( Alg_expr.CONST _ | Alg_expr.ALG_VAR _ | Alg_expr.BIN_ALG_OP _
          | Alg_expr.UN_ALG_OP _ | Alg_expr.STATE_ALG_OP _
          | Alg_expr.KAPPA_INSTANCE _ | Alg_expr.TOKEN_ID _ | Alg_expr.IF _
          | Alg_expr.DIFF_KAPPA_INSTANCE _ | Alg_expr.DIFF_TOKEN _ ),
          _ ) ->
        Alg_expr.UN_ALG_OP (op, a), loc)
    | Operator.SQRT | Operator.LOG | Operator.INT ->
      Alg_expr.UN_ALG_OP (op, a), loc)
  | Alg_expr.DIFF_KAPPA_INSTANCE (expr, mix), loc ->
    let expr = simplify expr in
    (match expr with
    | Alg_expr.CONST _, _ -> Alg_expr.CONST Nbr.zero, loc
    | ( ( Alg_expr.ALG_VAR _ | Alg_expr.BIN_ALG_OP _ | Alg_expr.UN_ALG_OP _
        | Alg_expr.STATE_ALG_OP _ | Alg_expr.KAPPA_INSTANCE _
        | Alg_expr.TOKEN_ID _ | Alg_expr.IF _ | Alg_expr.DIFF_KAPPA_INSTANCE _
        | Alg_expr.DIFF_TOKEN _ ),
        _ ) ->
      Alg_expr.DIFF_KAPPA_INSTANCE (expr, mix), loc)
  | Alg_expr.DIFF_TOKEN (expr, token), loc ->
    let expr = simplify expr in
    (match expr with
    | Alg_expr.CONST _, _ -> Alg_expr.CONST Nbr.zero, loc
    | ( ( Alg_expr.ALG_VAR _ | Alg_expr.BIN_ALG_OP _ | Alg_expr.UN_ALG_OP _
        | Alg_expr.STATE_ALG_OP _ | Alg_expr.KAPPA_INSTANCE _
        | Alg_expr.TOKEN_ID _ | Alg_expr.IF _ | Alg_expr.DIFF_KAPPA_INSTANCE _
        | Alg_expr.DIFF_TOKEN _ ),
        _ ) ->
      Alg_expr.DIFF_TOKEN (expr, token), loc)
  | Alg_expr.STATE_ALG_OP _, _
  | Alg_expr.ALG_VAR _, _
  | Alg_expr.KAPPA_INSTANCE _, _
  | Alg_expr.TOKEN_ID _, _
  | Alg_expr.CONST _, _ ->
    expr
  | Alg_expr.IF (cond, yes, no), loc ->
    let cond, yes, no = simplify_bool cond, simplify yes, simplify no in
    (match cond with
    | Alg_expr.TRUE, _ -> yes
    | Alg_expr.FALSE, _ -> no
    | Alg_expr.UN_BOOL_OP (_, _), _
    | Alg_expr.BIN_BOOL_OP (_, _, _), _
    | Alg_expr.COMPARE_OP (_, _, _), _ ->
      Alg_expr.IF (cond, yes, no), loc)

and simplify_bool expr_bool =
  match expr_bool with
  | Alg_expr.TRUE, _ | Alg_expr.FALSE, _ -> expr_bool
  | Alg_expr.UN_BOOL_OP (op, a), loc ->
    (match simplify_bool a with
    | Alg_expr.TRUE, _ -> Alg_expr.FALSE, loc
    | Alg_expr.FALSE, _ -> Alg_expr.TRUE, loc
    | ( Alg_expr.BIN_BOOL_OP (_, _, _), _
      | Alg_expr.COMPARE_OP (_, _, _), _
      | Alg_expr.UN_BOOL_OP (_, _), _ ) as a' ->
      Alg_expr.UN_BOOL_OP (op, a'), loc)
  | Alg_expr.BIN_BOOL_OP (op, a, b), loc ->
    let a, b = simplify_bool a, simplify_bool b in
    (match op with
    | Operator.AND ->
      (match a, b with
      | (Alg_expr.TRUE, _), _ -> b
      | (Alg_expr.FALSE, _), _ -> a
      | _, (Alg_expr.TRUE, _) -> a
      | _, (Alg_expr.FALSE, _) -> b
      | ( ( ( Alg_expr.BIN_BOOL_OP (_, _, _)
            | Alg_expr.COMPARE_OP (_, _, _)
            | Alg_expr.UN_BOOL_OP (_, _) ),
            _ ),
          ( ( Alg_expr.BIN_BOOL_OP (_, _, _)
            | Alg_expr.COMPARE_OP (_, _, _)
            | Alg_expr.UN_BOOL_OP (_, _) ),
            _ ) ) ->
        Alg_expr.BIN_BOOL_OP (op, a, b), loc)
    | Operator.OR ->
      (match a, b with
      | (Alg_expr.TRUE, _), _ -> a
      | (Alg_expr.FALSE, _), _ -> b
      | _, (Alg_expr.TRUE, _) -> b
      | _, (Alg_expr.FALSE, _) -> a
      | ( ( ( Alg_expr.BIN_BOOL_OP (_, _, _)
            | Alg_expr.COMPARE_OP (_, _, _)
            | Alg_expr.UN_BOOL_OP (_, _) ),
            _ ),
          ( ( Alg_expr.BIN_BOOL_OP (_, _, _)
            | Alg_expr.COMPARE_OP (_, _, _)
            | Alg_expr.UN_BOOL_OP (_, _) ),
            _ ) ) ->
        Alg_expr.BIN_BOOL_OP (op, a, b), loc))
  | Alg_expr.COMPARE_OP (op, a, b), loc ->
    let a, b = simplify a, simplify b in
    (match a, b with
    | (Alg_expr.CONST a, _), (Alg_expr.CONST b, _) ->
      (match op with
      | Operator.GREATER ->
        if Nbr.is_greater a b then
          Alg_expr.TRUE, loc
        else
          Alg_expr.FALSE, loc
      | Operator.SMALLER ->
        if Nbr.is_smaller a b then
          Alg_expr.TRUE, loc
        else
          Alg_expr.FALSE, loc
      | Operator.EQUAL ->
        if Nbr.is_equal a b then
          Alg_expr.TRUE, loc
        else
          Alg_expr.FALSE, loc
      | Operator.DIFF ->
        if Nbr.is_equal a b then
          Alg_expr.FALSE, loc
        else
          Alg_expr.TRUE, loc)
    | ( ( ( Alg_expr.CONST _ | Alg_expr.ALG_VAR _ | Alg_expr.BIN_ALG_OP _
          | Alg_expr.UN_ALG_OP _ | Alg_expr.STATE_ALG_OP _
          | Alg_expr.KAPPA_INSTANCE _ | Alg_expr.TOKEN_ID _ | Alg_expr.IF _
          | Alg_expr.DIFF_TOKEN _ | Alg_expr.DIFF_KAPPA_INSTANCE _ ),
          _ ),
        ( ( Alg_expr.CONST _ | Alg_expr.ALG_VAR _ | Alg_expr.BIN_ALG_OP _
          | Alg_expr.UN_ALG_OP _ | Alg_expr.STATE_ALG_OP _
          | Alg_expr.KAPPA_INSTANCE _ | Alg_expr.TOKEN_ID _ | Alg_expr.IF _
          | Alg_expr.DIFF_TOKEN _ | Alg_expr.DIFF_KAPPA_INSTANCE _ ),
          _ ) ) ->
      Alg_expr.COMPARE_OP (op, a, b), loc)

let simplify expr =
  let root_only = false in
  simplify ~root_only expr

let rec clean expr =
  let expr = fst expr in
  match expr with
  | Alg_expr.BIN_ALG_OP (op, a, b) ->
    Loc.annot_with_dummy (Alg_expr.BIN_ALG_OP (op, clean a, clean b))
  | Alg_expr.UN_ALG_OP (op, a) ->
    Loc.annot_with_dummy (Alg_expr.UN_ALG_OP (op, clean a))
  | Alg_expr.DIFF_TOKEN (expr, dt) ->
    Loc.annot_with_dummy (Alg_expr.DIFF_TOKEN (clean expr, dt))
  | Alg_expr.DIFF_KAPPA_INSTANCE (expr, dt) ->
    Loc.annot_with_dummy (Alg_expr.DIFF_KAPPA_INSTANCE (clean expr, dt))
  | Alg_expr.STATE_ALG_OP _ | Alg_expr.ALG_VAR _ | Alg_expr.KAPPA_INSTANCE _
  | Alg_expr.TOKEN_ID _ | Alg_expr.CONST _ ->
    Loc.annot_with_dummy expr
  | Alg_expr.IF (cond, yes, no) ->
    Loc.annot_with_dummy (Alg_expr.IF (clean_bool cond, clean yes, clean no))

and clean_bool expr_bool =
  let expr = fst expr_bool in
  match expr with
  | Alg_expr.TRUE | Alg_expr.FALSE -> Loc.annot_with_dummy expr
  | Alg_expr.UN_BOOL_OP (op, a) ->
    Loc.annot_with_dummy (Alg_expr.UN_BOOL_OP (op, clean_bool a))
  | Alg_expr.BIN_BOOL_OP (op, a, b) ->
    Loc.annot_with_dummy (Alg_expr.BIN_BOOL_OP (op, clean_bool a, clean_bool b))
  | Alg_expr.COMPARE_OP (op, a, b) ->
    Loc.annot_with_dummy (Alg_expr.COMPARE_OP (op, clean a, clean b))

let rec get_corrected_rate e =
  match e with
  | Alg_expr.BIN_ALG_OP (Operator.MULT, (Alg_expr.CONST cst, _), e), _
  | Alg_expr.BIN_ALG_OP (Operator.MULT, e, (Alg_expr.CONST cst, _)), _ ->
    (match get_corrected_rate e with
    | None -> None
    | Some corrected_rate ->
      Some { corrected_rate with num = Nbr.mult cst corrected_rate.num })
  | Alg_expr.BIN_ALG_OP (Operator.DIV, e, (Alg_expr.CONST cst, _)), _ ->
    (match get_corrected_rate e with
    | None -> None
    | Some corrected_rate ->
      Some { corrected_rate with den = Nbr.mult cst corrected_rate.den })
  | Alg_expr.BIN_ALG_OP (Operator.SUM, e1, e2), _ ->
    (match get_corrected_rate e1 with
    | None -> None
    | Some corrected_rate1 ->
      (match get_corrected_rate e2 with
      | Some corrected_rate2
        when compare corrected_rate1.var corrected_rate2.var = 0
             && Nbr.is_equal corrected_rate1.den corrected_rate2.den ->
        Some
          {
            corrected_rate1 with
            num = Nbr.add corrected_rate1.num corrected_rate2.num;
          }
      | Some corrected_rate2
        when compare corrected_rate1.var corrected_rate2.var = 0 ->
        Some
          {
            corrected_rate1 with
            num =
              Nbr.add
                (Nbr.mult corrected_rate2.den corrected_rate1.num)
                (Nbr.mult corrected_rate1.den corrected_rate2.num);
            den = Nbr.mult corrected_rate1.den corrected_rate2.den;
          }
      | None | Some _ -> None))
  | ( Alg_expr.BIN_ALG_OP
        ( ( Operator.MULT | Operator.DIV | Operator.MINUS | Operator.POW
          | Operator.MODULO | Operator.MAX | Operator.MIN ),
          _,
          _ ),
      _ )
  | ( ( Alg_expr.UN_ALG_OP _ | Alg_expr.STATE_ALG_OP _
      | Alg_expr.KAPPA_INSTANCE _ | Alg_expr.TOKEN_ID _ | Alg_expr.DIFF_TOKEN _
      | Alg_expr.DIFF_KAPPA_INSTANCE _ | Alg_expr.IF _ ),
      _ ) ->
    None
  | Alg_expr.ALG_VAR _, _ -> Some { var = Some e; num = Nbr.one; den = Nbr.one }
  | Alg_expr.CONST cst, _ -> Some { var = None; num = cst; den = Nbr.one }

let get_corrected_rate e = get_corrected_rate (clean e)

let print pr_var f corrected_rate_const =
  match corrected_rate_const with
  | None -> Format.fprintf f "None"
  | Some a ->
    (match a.var with
    | Some _ ->
      Format.fprintf f "(%a/%a).%a" Nbr.print a.num Nbr.print a.den pr_var a.var
    | None -> Format.fprintf f "(%a/%a)" Nbr.print a.num Nbr.print a.den)

let necessarily_equal a_opt b_opt =
  match a_opt, b_opt with
  | None, _ | _, None -> false
  | Some a, Some b ->
    Option_util.equal Alg_expr.equal a.var b.var
    && Nbr.is_equal (Nbr.mult a.num b.den) (Nbr.mult a.den b.num)

let dep empty add_mixture add_token union dep_env ?time_var expr =
  let rec aux add_mixture add_token union dep_env expr accu =
    match fst expr with
    | Alg_expr.BIN_ALG_OP (_, e1, e2) | Alg_expr.IF (_, e1, e2) ->
      aux add_mixture add_token union dep_env e1
        (aux add_mixture add_token union dep_env e2 accu)
    | Alg_expr.UN_ALG_OP (_, e)
    | Alg_expr.DIFF_TOKEN (e, _)
    | Alg_expr.DIFF_KAPPA_INSTANCE (e, _) ->
      aux add_mixture add_token union dep_env e accu
    | Alg_expr.STATE_ALG_OP Operator.TIME_VAR ->
      (match time_var with
      | Some id -> add_mixture id accu
      | None ->
        raise
          (ExceptionDefn.Internal_Error
             ( "A variable for time shall be provided to analyse the \
                dependences in a time-dependent expression",
               snd expr )))
    | Alg_expr.STATE_ALG_OP
        ( Operator.CPUTIME | Operator.EVENT_VAR | Operator.NULL_EVENT_VAR
        | Operator.TMAX_VAR | Operator.EMAX_VAR ) ->
      accu
    | Alg_expr.ALG_VAR id -> union (dep_env id) accu
    | Alg_expr.KAPPA_INSTANCE mix -> add_mixture mix accu
    | Alg_expr.TOKEN_ID id -> add_token id accu
    | Alg_expr.CONST _ -> accu
  in
  aux add_mixture add_token union dep_env expr empty

let rec diff_gen f_mix f_token f_symb f_time expr =
  match fst expr with
  | Alg_expr.IF (b, e1, e2) ->
    Loc.annot_with_dummy
      (Alg_expr.IF
         ( b,
           diff_gen f_mix f_token f_symb f_time e1,
           diff_gen f_mix f_token f_symb f_time e2 ))
  | Alg_expr.BIN_ALG_OP (op, e1, e2) ->
    (match op with
    | Operator.SUM ->
      Alg_expr.add
        (diff_gen f_mix f_token f_symb f_time e1)
        (diff_gen f_mix f_token f_symb f_time e2)
    | Operator.MULT ->
      Alg_expr.add
        (Alg_expr.mult e1 (diff_gen f_mix f_token f_symb f_time e2))
        (Alg_expr.mult e2 (diff_gen f_mix f_token f_symb f_time e1))
    | Operator.MINUS ->
      Alg_expr.minus
        (diff_gen f_mix f_token f_symb f_time e1)
        (diff_gen f_mix f_token f_symb f_time e2)
    | Operator.MIN | Operator.MAX -> Alg_expr.int 0
    | Operator.MODULO -> diff_gen f_mix f_token f_symb f_time e1
    | Operator.DIV ->
      Alg_expr.div
        (Alg_expr.minus
           (Alg_expr.mult (diff_gen f_mix f_token f_symb f_time e1) e2)
           (Alg_expr.mult (diff_gen f_mix f_token f_symb f_time e2) e1))
        (Alg_expr.pow e2 (Alg_expr.int 2))
    | Operator.POW ->
      (* (u^v)*(v'*ln(u)+v*u'/u) *)
      Alg_expr.mult (Alg_expr.pow e1 e2)
        (Alg_expr.add
           (Alg_expr.mult
              (diff_gen f_mix f_token f_symb f_time e2)
              (Alg_expr.ln e1))
           (Alg_expr.div
              (Alg_expr.mult e2 (diff_gen f_mix f_token f_symb f_time e1))
              e1)))
  | Alg_expr.UN_ALG_OP (op, e) ->
    (match op with
    | Operator.UMINUS ->
      Alg_expr.uminus (diff_gen f_mix f_token f_symb f_time e)
    | Operator.COSINUS ->
      Alg_expr.mult
        (diff_gen f_mix f_token f_symb f_time e)
        (Alg_expr.uminus (Alg_expr.sin e))
    | Operator.SINUS ->
      Alg_expr.mult (diff_gen f_mix f_token f_symb f_time e) (Alg_expr.cos e)
    | Operator.LOG ->
      Alg_expr.mult
        (diff_gen f_mix f_token f_symb f_time e)
        (Alg_expr.div (Alg_expr.int 1) e)
    | Operator.SQRT ->
      Alg_expr.mult
        (diff_gen f_mix f_token f_symb f_time e)
        (Alg_expr.div (Alg_expr.int (-1)) (Alg_expr.sqrt e))
    | Operator.EXP -> Alg_expr.mult (diff_gen f_mix f_token f_symb f_time e) e
    | Operator.TAN ->
      Alg_expr.mult
        (diff_gen f_mix f_token f_symb f_time e)
        (Alg_expr.add (Alg_expr.int 1) (Alg_expr.pow e (Alg_expr.int 2)))
    | Operator.INT -> Alg_expr.int 0)
  | Alg_expr.STATE_ALG_OP Operator.TIME_VAR -> f_time ()
  | Alg_expr.STATE_ALG_OP
      ( Operator.CPUTIME | Operator.EVENT_VAR | Operator.NULL_EVENT_VAR
      | Operator.TMAX_VAR | Operator.EMAX_VAR ) ->
    Alg_expr.int 0
  | Alg_expr.KAPPA_INSTANCE mix -> f_mix mix
  | Alg_expr.TOKEN_ID id -> f_token id
  | Alg_expr.CONST _ -> Alg_expr.int 0
  | Alg_expr.ALG_VAR _ | Alg_expr.DIFF_TOKEN _ | Alg_expr.DIFF_KAPPA_INSTANCE _
    ->
    f_symb expr

let diff_token expr token =
  let f_mix _ = Alg_expr.int 0 in
  let f_token a =
    if a = token then
      Alg_expr.int 1
    else
      Alg_expr.int 0
  in
  let f_symb expr = Alg_expr.DIFF_TOKEN (expr, token), Loc.dummy in
  let f_time _ = Alg_expr.int 0 in
  diff_gen f_mix f_token f_symb f_time expr

let diff_mixture ?time_var expr mixture =
  let f_mix a =
    if a = mixture then
      Alg_expr.int 1
    else
      Alg_expr.int 0
  in
  let f_token _ = Alg_expr.int 0 in
  let f_symb expr = Alg_expr.DIFF_KAPPA_INSTANCE (expr, mixture), Loc.dummy in
  let f_time () =
    match time_var with
    | Some b when mixture = b -> Alg_expr.int 1
    | Some _ -> Alg_expr.int 0
    | None ->
      raise
        (ExceptionDefn.Internal_Error
           ( "A time-dependent expression cannot be differentiated without \
              specifying a variable for time progress",
             Loc.dummy ))
  in
  diff_gen f_mix f_token f_symb f_time expr

let fold_over_mix_in_list f mix accu =
  List.fold_left
    (fun accu array_id ->
      Array.fold_left (fun accu pid -> f pid accu) accu array_id)
    accu mix

let fold_over_mix_in_alg_expr f expr accu =
  let l = Alg_expr.extract_connected_components expr in
  List.fold_left (fun accu mix -> fold_over_mix_in_list f mix accu) accu l

let fold_over_mixtures_in_alg_exprs f model accu =
  let algs_expr = Model.get_algs model in
  let observables = Model.get_obs model in
  (*algs*)
  let accu =
    Array.fold_left
      (fun accu (_, mix) -> fold_over_mix_in_alg_expr f mix accu)
      accu algs_expr
  in
  (*observations*)
  let accu =
    Array.fold_left
      (fun accu mix -> fold_over_mix_in_alg_expr f mix accu)
      accu observables
  in
  (*rules*)
  let rules = Model.get_rules model in
  (*rate*)
  let accu =
    Array.fold_left
      (fun accu elementary_rule ->
        let rate = elementary_rule.Primitives.rate in
        let accu = fold_over_mix_in_alg_expr f rate accu in
        (*unary_rate*)
        let unary_rate = elementary_rule.Primitives.unary_rate in
        let accu =
          match unary_rate with
          | None -> accu
          | Some (expr, _) -> fold_over_mix_in_alg_expr f expr accu
        in
        (*delta tokens*)
        let delta_tokens = elementary_rule.Primitives.delta_tokens in
        let accu =
          List.fold_left
            (fun accu (expr, _) -> fold_over_mix_in_alg_expr f expr accu)
            accu delta_tokens
        in
        accu)
      accu rules
  in
  accu
OCaml

Innovation. Community. Security.