summaryrefslogtreecommitdiffstats
path: root/src/act4e_mcdp_solution/solver_dp.py
blob: 6d1596308887a6a69fc3314c50a8b11a0940cec0 (plain)
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
import typing
from typing import Optional, TypeVar, Tuple, List
from act4e_mcdp import *  # type: ignore
from decimal import Decimal
from functools import reduce
from itertools import starmap


import itertools

__all__ = [
    "DPSolver",
]


X = TypeVar("X")
M = TypeVar("M")
FT = TypeVar("FT")
RT = TypeVar("RT")
R1 = TypeVar("R1")
R2 = TypeVar("R2")
F1 = TypeVar("F1")
F2 = TypeVar("F2")


class DPSolver(DPSolverInterface):
    # walkthrough: identity

    def solve_dp_FixFunMinRes_IdentityDP(
        self, _: IdentityDP[X], query: FixFunMinResQuery[X]
    ) -> Interval[UpperSet[X]]:
        # Easy: the minimal resources are the functionality itself
        f = query.functionality
        min_r = f
        min_resources = UpperSet.principal(min_r)

        # We need to return an interval of upper sets. It is a degenerate interval
        return Interval.degenerate(min_resources)

    def solve_dp_FixResMaxFun_IdentityDP(
        self, _: IdentityDP[X], query: FixResMaxFunQuery[X]
    ) -> Interval[LowerSet[X]]:
        # same as above, but we return lower sets

        r = query.resources
        max_f = r
        max_functionalities = LowerSet.principal(max_f)
        return Interval.degenerate(max_functionalities)

    # walkthrough: constant resources

    def solve_dp_FixFunMinRes_Constant(
        self, dp: Constant[X], query: FixFunMinResQuery[tuple[()]]
    ) -> Interval[UpperSet[X]]:
        # The DP is a relation of the type
        #
        #    42 ≤ r

        # The functionalities are the empty tuple

        assert query.functionality == (), query.functionality

        # The minimal resources do not depend on functionality
        # They are the constant value of the DP

        min_r = dp.c.value
        min_resources = UpperSet.principal(min_r)
        return Interval.degenerate(min_resources)

    def solve_dp_FixResMaxFun_Constant(
        self, dp: Constant[X], query: FixResMaxFunQuery[X]
    ) -> Interval[LowerSet[tuple[()]]]:
        # The DP is a relation of the type
        #
        #    42 ≤ r

        # Here we need to check whether the resources are at least 42

        R = dp.R
        if R.leq(dp.c.value, query.resources):
            # the functionalities are the empty tuple
            max_f = ()
            return Interval.degenerate(LowerSet.principal(max_f))
        else:
            # the given budget is not enough
            empty: LowerSet[tuple[()]] = LowerSet.empty()
            return Interval.degenerate(empty)

    # exercise: limit

    def solve_dp_FixResMaxFun_Limit(self, dp: Limit[X], query: FixResMaxFunQuery[X]) -> Interval[LowerSet[X]]:
        # The DP is a relation of the type
        #
        #    f ≤ 42

        # This is the dual of Constant above. Swap functionalities and resources.

        max_f = dp.c.value
        max_functionality = LowerSet.principal(max_f)
        return Interval.degenerate(max_functionality)


    def solve_dp_FixFunMinRes_Limit(
        self, dp: Limit[X], query: FixFunMinResQuery[X]
    ) -> Interval[UpperSet[tuple[()]]]:
        # The DP is a relation of the type
        #
        #    f ≤ 42

        # This is the dual of Constant above. Swap functionalities and resources.

        if dp.F.geq(dp.c.value, query.functionality):
            min_r = ()
            return Interval.degenerate(UpperSet.principal(min_r))
        else:
            empty = UpperSet.empty()
            return Interval.degenerate(empty)

    # walkthrough: ceil(f) <= r  DP

    def solve_dp_FixFunMinRes_M_Ceil_DP(
        self, dp: M_Ceil_DP, query: FixFunMinResQuery[Decimal]
    ) -> Interval[UpperSet[Decimal]]:
        # In the documentation of the class M_Ceil_DP we have
        # that the relation is defined as:
        #
        #   ceil(f) ≤ r

        # Therefore, the minimal resources are the ceiling of the functionality
        #   r >= ceil(f)
        f = query.functionality
        assert isinstance(f, Decimal)

        # For M_Ceil_DP, the F and R posets are Numbers
        R: Numbers = dp.R
        F: Numbers = dp.F

        # Note: the f = +inf is a special case for which __ceil__() does not work
        if f.is_infinite():
            min_r = f
        else:
            # otherwise, we just use the ceil function
            min_r = Decimal(f.__ceil__())

        # now, one last detail: in general, the F poset can have
        # different upper/lower bound or discretization than the R poset.
        # We need to make sure that we provide a valid resource.

        # There is a function largest_upperset_above() that will do this for us.
        # See documentation there.

        min_resources = R.largest_upperset_above(min_r)
        return Interval.degenerate(min_resources)

    def solve_dp_FixResMaxFun_M_Ceil_DP(
        self, dp: M_Ceil_DP, query: FixResMaxFunQuery[Decimal]
    ) -> Interval[LowerSet[Decimal]]:
        # Now r is fixed
        r = query.resources
        assert isinstance(r, Decimal), r

        R: Numbers = dp.R
        F: Numbers = dp.F

        # For M_Ceil_DP, the F/R posets are Numbers

        # first special case: r = +inf
        if r.is_infinite():
            max_f = r

        else:
            # what is the maximum f such that
            #   ceil(f) <= r
            # ?

            # for example, if r = 13.2, then the maximum f is 13
            # in fact, we obtain the floor of r

            max_f = Decimal(r.__floor__())

        # one last detail: we need to make sure that the functionality is valid
        # for the F poset. We use the largest_lowerset_below() function in Numbers.
        # See documentation there.

        max_functionalities = F.largest_lowerset_below(max_f)

        return Interval.degenerate(max_functionalities)

    # exercise: floor relation

    def solve_dp_FixFunMinRes_M_FloorFun_DP(
        self, dp: M_FloorFun_DP, query: FixFunMinResQuery[Decimal]
    ) -> Interval[UpperSet[Decimal]]:
        # f <= floor(r)

        # This is dual to M_Ceil_DP
        f = query.functionality
        assert isinstance(f, Decimal)

        R: Numbers = dp.R
        F: Numbers = dp.F

        if f.is_infinite():
            min_r = f
        else:
            min_r = Decimal(f.__floor__())

        min_resources = R.largest_upperset_above(min_r)
        return Interval.degenerate(min_resources)

    def solve_dp_FixResMaxFun_M_FloorFun_DP(
        self, dp: M_FloorFun_DP, query: FixResMaxFunQuery[Decimal]
    ) -> Interval[LowerSet[Decimal]]:
        # f <= floor(r)

        # This is dual to M_Ceil_DP
        r = query.resources
        assert isinstance(r, Decimal), r

        if r.is_infinite():
            max_f = r
        else:
            max_f = Decimal(r.__floor__())

        max_functionalities = dp.F.largest_lowerset_below(max_f)
        return Interval.degenerate(max_functionalities)

    # exercise: catalogue

    def solve_dp_FixFunMinRes_CatalogueDP(
        self, dp: CatalogueDP[FT, RT], query: FixFunMinResQuery[FT]
    ) -> Interval[UpperSet[RT]]:
        f = query.functionality
        F = dp.F

        # Hint: iterate over the entries of the catalogue
        min_rs = []

        name: str
        entry_info: EntryInfo[FT, RT]
        for name, entry_info in dp.entries.items():
            # Then check if this entry is valid for the functionality
            # In that case, the resources of the entry are a valid solution
            if F.leq(f, entry_info.f_max):
                min_rs.append(entry_info.r_min)

        if not min_rs:
            return Interval.degenerate(UpperSet.empty())

        min_r = min(min_rs)
        return Interval.degenerate(UpperSet.principal(min_r))

    def solve_dp_FixResMaxFun_CatalogueDP(
        self, dp: CatalogueDP[FT, RT], query: FixResMaxFunQuery[RT]
    ) -> Interval[LowerSet[FT]]:

        max_fs = []
        for _, info in dp.entries.items():
            if dp.R.geq(query.resources, info.r_min):
                max_fs.append(info.f_max)

        if not max_fs:
            return Interval.degenerate(LowerSet.empty())

        max_f = max(max_fs)
        return Interval.degenerate(LowerSet.principal(max_f))

    # exercise: series interconnections

    def solve_dp_FixFunMinRes_DPSeries(
        self, dp: DPSeries, query: FixFunMinResQuery[object]
    ) -> Interval[UpperSet[object]]:
        # This is the interconnection of a sequence of DPs.
        # (You can assume that the sequence is at least 2 DPs).

        # Hint: you should solve each DP in the sequence, and then
        # pass it to the next.
        # You can use the function self.solve_dp_FixFunMinRes() for this.

        # Note 1: the solve_dp_FixFunMinRes_DPSeries() takes a single functionality.
        # But in general the previous DP returns an upperset. You need to call it multiple times.
        # Note 2: the solve_dp_FixFunMinRes_DPSeries() returns an *interval* of upper sets.
        # Just treat the optimistic and pessimistic cases separately and then combine them in an interval.

        def chain_naive(queries, dp):
            us_res = [self.solve_dp_FixFunMinRes(dp, query)
                      for query in queries]

            optimistic = (FixFunMinResQuery(functionality=r)
                          for us_r in us_res for r in us_r.optimistic.minimals)

            pessimistic = (FixFunMinResQuery(functionality=r)
                           for us_r in us_res for r in us_r.pessimistic.minimals)

            return itertools.chain(optimistic, pessimistic)

        queries = list(reduce(chain_naive, dp.subs, (query,)))
        
        if not queries:
            return Interval.degenerate(UpperSet.empty())

        min_r = queries[0].functionality
        max_r = queries[0].functionality

        for query in queries:
            r = query.functionality
            if r < min_r:
                min_r = r

            if r > max_r:
                max_r = r

        return Interval(optimistic=dp.R.largest_upperset_above(min_r),
                        pessimistic=dp.R.largest_upperset_above(max_r))

    def solve_dp_FixResMaxFun_DPSeries(
        self, dp: DPSeries, query: FixResMaxFunQuery[object]
    ) -> Interval[LowerSet[object]]:
        # Hint: same as above, but go the other way...

        def chain_naive(queries, dp):
            ls_fun = [self.solve_dp_FixResMaxFun(dp, query)
                      for query in queries]

            optimistic = (FixResMaxFunQuery(resources=f)
                          for ls_f in ls_fun
                          for f in ls_f.optimistic.maximals)

            pessimistic = (FixResMaxFunQuery(resources=f)
                           for ls_f in ls_fun
                           for f in ls_f.pessimistic.maximals)

            return itertools.chain(optimistic, pessimistic)

        queries = list(reduce(chain_naive, reversed(dp.subs), (query,)))
        
        if not queries:
            return Interval.degenerate(LowerSet.empty())

        max_f = queries[0].resources
        min_f = queries[0].resources

        for query in queries:
            f = query.resources
            if f < min_f:
                min_f = f

            if f > max_f:
                max_f = f

        return Interval(optimistic=dp.F.largest_lowerset_below(max_f),
                        pessimistic=dp.F.largest_lowerset_below(min_f))

    # walkthrough: add a constant to functionalities ( f + constant <= r)

    def solve_dp_FixFunMinRes_M_Res_AddConstant_DP(
        self, dp: M_Res_AddConstant_DP, query: FixFunMinResQuery[Decimal]
    ) -> Interval[UpperSet[Decimal]]:
        f: Decimal = query.functionality
        assert isinstance(f, Decimal)

        R: Numbers = dp.R
        F: Numbers = dp.F

        # the relation is of the type
        #
        #    f + constant <= r

        # therefore, the minimum resource is simply f + constant
        min_r = f + dp.vu.value

        # one last detail: we need to make sure that the resource is valid
        # for the R poset. We use the largest_upperset_above() function in Numbers.
        # See documentation there.
        us = R.largest_upperset_above(min_r)

        return Interval.degenerate(us)

    def solve_dp_FixResMaxFun_M_Res_AddConstant_DP(
        self, dp: M_Res_AddConstant_DP, query: FixResMaxFunQuery[Decimal]
    ) -> Interval[LowerSet[Decimal]]:
        r = query.resources
        assert isinstance(r, Decimal)

        R: Numbers = dp.R
        F: Numbers = dp.F

        # the relation is of the type
        #
        #    f + constant <= r

        # therefore, the maximal functionality is r - constant

        max_f = r - dp.vu.value

        # one last detail: we need to make sure that the functionality is valid
        # for the F poset. We use the largest_lowerset_below() function in Numbers.
        # See documentation there.
        ls = F.largest_lowerset_below(max_f)

        return Interval.degenerate(ls)

    # exercise: add a constant to resource ( f <= r + constant)

    def solve_dp_FixFunMinRes_M_Fun_AddConstant_DP(
        self, dp: M_Fun_AddConstant_DP, query: FixFunMinResQuery[Decimal]
    ) -> Interval[UpperSet[Decimal]]:
        # f <= r + constant
        # This is dual to the M_Res_AddConstant_DP case above.

        f = query.functionality
        min_r = f - dp.vu.value
        us = dp.R.largest_upperset_above(min_r)

        return Interval.degenerate(us)

    def solve_dp_FixResMaxFun_M_Fun_AddConstant_DP(
        self, dp: M_Fun_AddConstant_DP, query: FixResMaxFunQuery[Decimal]
    ) -> Interval[LowerSet[Decimal]]:
        # f <= r + constant
        # This is dual to the M_Res_AddConstant_DP case above.

        r = query.resources
        max_f = r + dp.vu.value
        ls = dp.F.largest_lowerset_below(max_f)

        return Interval.degenerate(ls)

    # walkthrough: multiplying constants (f * constant <= r)
    def solve_dp_FixFunMinRes_M_Res_MultiplyConstant_DP(
        self, dp: M_Res_MultiplyConstant_DP, query: FixFunMinResQuery[Decimal]
    ) -> Interval[UpperSet[Decimal]]:
        #  (f * constant <= r)

        # This is similar to the M_Res_AddConstant_DP case above with
        # multiplication instead of addition.

        f = query.functionality
        assert isinstance(f, Decimal)
        min_r = f * dp.vu.value

        # one last detail: we need to make sure that the resource is valid
        # for the R poset. We use the largest_upperset_above() function in Numbers.
        # See documentation there.
        us = dp.R.largest_upperset_above(min_r)

        return Interval.degenerate(us)

    def solve_dp_FixResMaxFun_M_Res_MultiplyConstant_DP(
        self, dp: M_Res_MultiplyConstant_DP, query: FixResMaxFunQuery[Decimal]
    ) -> Interval[LowerSet[Decimal]]:
        #  (f * constant <= r)

        r = query.resources
        max_f = r / dp.vu.value
        ls = dp.F.largest_lowerset_below(max_f)

        return Interval.degenerate(ls)

    # exercise: multiply by constant (f  <= r * constant)

    def solve_dp_FixFunMinRes_M_Fun_MultiplyConstant_DP(
        self, dp: M_Fun_MultiplyConstant_DP, query: FixFunMinResQuery[Decimal]
    ) -> Interval[UpperSet[Decimal]]:

        f = query.functionality
        min_r = f / dp.vu.value
        us = dp.R.largest_upperset_above(min_r)

        return Interval.degenerate(us)

    def solve_dp_FixResMaxFun_M_Fun_MultiplyConstant_DP(
        self, dp: M_Fun_MultiplyConstant_DP, query: FixResMaxFunQuery[Decimal]
    ) -> Interval[LowerSet[Decimal]]:

        r = query.resources
        max_f = r * dp.vu.value
        ls = dp.F.largest_lowerset_below(max_f)

        return Interval.degenerate(ls)

    # walktrough: multiply functionalities

    def solve_dp_FixResMaxFun_M_Fun_MultiplyMany_DP(
        self, dp: M_Fun_MultiplyMany_DP, query: FixResMaxFunQuery[tuple[Decimal, ...]]
    ) -> Interval[LowerSet[Decimal]]:
        # f <= r1 * r2 * r3 * ...

        # This direction is easy, we just multiply the resources

        res = Decimal(1)
        for ri in query.resources:
            res *= ri
        ls = dp.F.largest_lowerset_below(res)
        return Interval.degenerate(ls)

    # exercise: multiply resources

    def solve_dp_FixFunMinRes_M_Res_MultiplyMany_DP(
        self, dp: M_Res_MultiplyMany_DP, query: FixFunMinResQuery[tuple[Decimal, ...]]
    ) -> Interval[UpperSet[Decimal]]:
        # f1 * f2 * f3 * ... <= r
        # similar to the above

        # this is the easy direction
        multiply = lambda acc, f: acc * f
        fun = reduce(multiply, query.functionality, Decimal(1))

        us = dp.R.largest_upperset_above(fun)
        return Interval.degenerate(us)

    # walkthough: add many

    def solve_dp_FixFunMinRes_M_Res_AddMany_DP(
        self, dp: M_Res_AddMany_DP, query: FixFunMinResQuery[tuple[Decimal, ...]]
    ) -> Interval[UpperSet[Decimal]]:
        # f1 + f2 + f3 + ... <= r

        f = query.functionality
        F: PosetProduct[Decimal] = dp.F
        assert isinstance(f, tuple), f
        assert len(f) == len(F.subs), (f, F)

        # This direction is easy, we just add the functionalities
        res = f[0]
        for fi in f[1:]:
            res += fi

        min_r = res
        us = dp.R.largest_upperset_above(min_r)
        return Interval.degenerate(us)

    # exercise: add many functionalities

    def solve_dp_FixResMaxFun_M_Fun_AddMany_DP(
        self, dp: M_Fun_AddMany_DP, query: FixResMaxFunQuery[tuple[Decimal, ...]]
    ) -> Interval[LowerSet[Decimal]]:

        add = lambda acc, r: acc + r
        res = reduce(add, query.resources, Decimal(0))

        ls = dp.F.largest_lowerset_below(res)
        return Interval.degenerate(ls)

    # exercise: meet

    def solve_dp_FixFunMinRes_MeetNDualDP(
        self, dp: MeetNDualDP[X], query: FixFunMinResQuery[X]
    ) -> Interval[UpperSet[tuple[X, ...]]]:
        # this is a relation of the type
        #  (f ≤  r₁) and (f ≤  r2)  and (f ≤  r3) and ...

        # this direction is very easy, as we can just let each resource
        # be equal to the functionality

        f = query.functionality
        min_res = (f,) * len(dp.R.subs)

        us = dp.R.largest_upperset_above(min_res)
        return Interval.degenerate(us)

    def solve_dp_FixResMaxFun_MeetNDualDP(
        self, dp: MeetNDualDP[X], query: FixResMaxFunQuery[X]
    ) -> Interval[LowerSet[tuple[X, ...]]]:

        max_f = dp.opspace.meet(query.resources)
        if max_f is None:
            return Interval.degenerate(LowerSet.empty())

        ls = dp.F.largest_lowerset_below(max_f)
        return Interval.degenerate(ls)

    # exercise: join

    def solve_dp_FixFunMinRes_JoinNDP(
        self, dp: JoinNDP[X], query: FixFunMinResQuery[tuple[X, ...]]
    ) -> Interval[UpperSet[X]]:
        # this is a relation of the type
        #  (f1 ≤  r) and (f2 ≤ r) and (f3 ≤ r) and ...

        # similar to above

        f = query.functionality
        min_r: Optional[X] = dp.opspace.join(f)
        if min_r is None:
            return Interval.degenerate(UpperSet.empty())

        us: UpperSet[X] = dp.R.largest_upperset_above(min_r)
        return Interval.degenerate(us)

    def solve_dp_FixResMaxFun_JoinNDP(
        self, dp: JoinNDP[X], query: FixResMaxFunQuery[X]
    ) -> Interval[LowerSet[tuple[X, ...]]]:

        r = query.resources
        max_f = (r,) * len(dp.F.subs)

        ls = dp.F.largest_lowerset_below(max_f)
        return Interval.degenerate(ls)

    # The above are sufficient for lib1
    #
    #
    #
    #

    # The following are only for lib2.
    #
    #

    def solve_dp_FixResMaxFun_M_Res_DivideConstant_DP(
        self, dp: M_Res_DivideConstant_DP, query: FixResMaxFunQuery[Decimal]
    ) -> Interval[LowerSet[Decimal]]:
        # f/c <= r

        # Similar to a case above
        r = query.resources
        max_f = r * dp.vu.value
        ls = dp.F.largest_lowerset_below(max_f)

        return Interval.degenerate(ls)

    def solve_dp_FixFunMinRes_M_Res_DivideConstant_DP(
        self, dp: M_Res_DivideConstant_DP, query: FixFunMinResQuery[Decimal]
    ) -> Interval[UpperSet[Decimal]]:
        # f/c <= r

        # Similar to a case above
        f = query.functionality
        min_r = f / dp.vu.value
        us = dp.R.largest_upperset_above(min_r)

        return Interval.degenerate(us)

    # Exercise: parallel interconnection

    def solve_dp_FixFunMinRes_ParallelDP(
        self, dp: ParallelDP[FT, RT], query: FixFunMinResQuery[tuple[FT, ...]]
    ) -> Interval[UpperSet[tuple[RT, ...]]]:
        # This is the parallel composition of a sequence of DPs.

        f = query.functionality

        # F and R are PosetProducts
        F: PosetProduct[FT] = dp.F
        R: PosetProduct[RT] = dp.R

        # and f is a tuple of functionalities
        assert isinstance(f, tuple), f
        # ... of the same length as the number of DPs
        assert len(f) == len(dp.subs), (f, F)

        # You should decompose f into its components, and then solve each DP.
        # Then you need to take the *product* of the solutions.
        # The product of upper sets is the upper set of the cartesian product
        # and it is implemented as UpperSet.product().

        queries = (FixFunMinResQuery(functionality=f)
                   for f in query.functionality)

        min_res = [self.solve_dp_FixFunMinRes(dp, query)
                   for dp, query in zip(dp.subs, queries)]

        optimistic = lambda res: res.optimistic
        pessimistic = lambda res: res.pessimistic

        return Interval(optimistic=UpperSet.product(map(optimistic, min_res)),
                        pessimistic=UpperSet.product(map(pessimistic, min_res)))

    def solve_dp_FixResMaxFun_ParallelDP(
        self, dp: ParallelDP[FT, RT], query: FixResMaxFunQuery[tuple[RT, ...]]
    ) -> Interval[LowerSet[FT]]:
        # Hint: same as above, swapping functionalities and resources

        queries = (FixResMaxFunQuery(resources=r)
                   for r in query.resources)

        max_fun = [self.solve_dp_FixResMaxFun(dp, query)
                   for dp, query in zip(dp.subs, queries)]

        optimistic = lambda fun: fun.optimistic
        pessimistic = lambda fun: fun.pessimistic

        # You will need to use LowerSet.product()
        return Interval(optimistic=LowerSet.product(map(optimistic, max_fun)),
                        pessimistic=LowerSet.product(map(pessimistic, max_fun)))

    # exercise (advanced): loops!

    def solve_dp_FixFunMinRes_DPLoop2(
        self, dp: DPLoop2[F1, R1, object], query: FixFunMinResQuery[F1]
    ) -> Interval[UpperSet[R1]]:
        # Note: this is an advanced exercise.

        # As in the book, the intermediate goal is to define a function f such that
        # the solution is the least fixed point of f.

        # Feedback, we let FT = (F1, M) and RT = (R1, M)
        #       __________________________ 
        #      |         ________         |
        # F1 --|- F1 ---|   DP   |--- R1 -|-- R1
        #      |        | FT->RT |        |
        #      |   M .--|________|--. M   |
        #      |     |              |     |
        #      |     '------O<------'     |
        #      |__________________________|
        
        def uppersets_intersection(poset: Poset[RT], us: List[UpperSet[RT]]) -> UpperSet[RT]:
            if len(us) < 2:
                return us

            def intersect_pair(u1: UpperSet[RT], u2: UpperSet[RT]) -> UpperSet[RT]:
                def poset_max(m1: RT, m2: RT) -> RT:
                    return m1 if poset.geq(m1, m2) else m2

                minimals: List[RT] = starmap(poset_max, zip(u1.minimals, u2.minimals))
                return UpperSet(minimals=list(minimals))

            return reduce(intersect_pair, us)

        # Map antichain to antichain in RT
        def phi(chain: List[RT]) -> List[RT]:
            uppersets: List[UpperSet[RT]] = []
            for r in chain:
                # Query for internal system that is looped 
                inner_f: FT = (query.functionality,) + r[1:]
                inner_query: FixFunMinResQuery[FT] = FixFunMinResQuery(functionality=inner_f)

                # Take the pessimistic solution
                min_rs: Interval[UpperSet[RT]] = self.solve_dp_FixFunMinRes(dp.dp, inner_query)
                min_r: UpperSet[RT] = min_rs.pessimistic

                # compute intersection of \uparrow r with h_d(f, r)
                up_r = UpperSet.principal(r)
                inters = uppersets_intersection(dp.dp.R, [min_r, up_r])
                uppersets.append(inters)

            # Return antichain of upperset union (minimum)
            union: UpperSet[RT] = UpperSet.union(uppersets, dp.dp.R)
            return union.minimals

        # Return antichain that is fixed point of phi
        def kleene_ascent(phi) -> List[R1]:
            # initialize with bottoms
            chain: List[RT] = list(dp.dp.R.global_minima().minimals)
            prev_chain = []

            # Ascent procedure
            while chain != prev_chain:
                prev_chain = chain
                chain = phi(chain)

            # Take R1 out of RT
            first = lambda r: r[0]
            chain: List[R1] = list(map(first, chain))
            return chain

        if isinstance(dp.dp, IdentityDP):
            return self.solve_dp_FixFunMinRes_IdentityDP(dp.dp, query)

        # Get chain that is a fixed point of phi and return upper set
        chain: List[R1] = kleene_ascent(phi)
        min_r_loop: UpperSet[R1] = UpperSet.from_points(dp.R, chain)

        return Interval.degenerate(min_r_loop)

    def solve_dp_FixResMaxFun_DPLoop2(
        self, dp: DPLoop2[F1, R1, object], query: FixResMaxFunQuery[R1]
    ) -> Interval[LowerSet[F1]]:
        # Note: this is an advanced exercise.

        # Hint: same as above, but go the other way...

        def lowersets_intersection(poset: Poset[FT], ls: List[LowerSet[FT]]) -> LowerSet[FT]:
            if len(ls) < 2:
                return ls

            def intersect_pair(l1: LowerSet[FT], l2: LowerSet[FT]) -> LowerSet[FT]:
                def poset_min(m1: FT, m2: FT) -> FT:
                    return m1 if poset.leq(m1, m2) else m2

                maximals: List[FT] = starmap(poset_min, zip(l1.maximals, l2.maximals))
                return LowerSet(maximals=list(maximals))

            return reduce(intersect_pair, ls)

        def phi(chain: List[FT]) -> List[FT]:
            lowersets: List[LowerSet[FT]] = []
            for f in chain:
                inner_r: RT = (query.resources,) + f[1:]
                inner_query: FixResMaxFunQuery[RT] = FixResMaxFunQuery(resources=inner_r)

                max_fs: Interval[LowerSet[FT]] = self.solve_dp_FixResMaxFun(dp.dp, inner_query)
                max_f: LowerSet[FT] = max_fs.pessimistic

                dw_f = LowerSet.principal(f)
                inters = lowersets_intersection(dp.dp.F, [max_f, dw_f])
                lowersets.append(inters)

            union: LowerSet[FT] = LowerSet.union(lowersets, dp.dp.F)
            return union.maximals

        def kleene_ascent(phi) -> List[F1]:
            chain: List[FT] = dp.dp.F.global_minima().minimals
            prev_chain = []

            while chain != prev_chain:
                prev_chain = chain
                chain = phi(chain)

            first = lambda f: f[0]
            chain: List[F1] = list(map(first, chain))
            return chain

        if isinstance(dp.dp, IdentityDP):
            return self.solve_dp_FixResMaxFun_IdentityDP(dp.dp, query)

        chain: List[F1] = kleene_ascent(phi)
        max_f_loop: LowerSet[F1] = LowerSet.from_points(dp.F, chain)

        return Interval.degenerate(max_f_loop)