Skip to content

Solution interface

This is the interface that you need to implement to solve the exercise.

Solver for DPs

DPSolverInterface

Bases: ABC

An abstract class that describes the interface of a solver for DPs.

Source code in src/act4e_mcdp/solution_interface.py
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
class DPSolverInterface(ABC):
    """
    An abstract class that describes the interface of a solver for DPs.

    """

    fixfunminres_used: set[str] = set()
    fixresmaxfun_used: set[str] = set()

    @final
    def solve_dp_FixFunMinRes(
        self,
        dp: PrimitiveDP[FT, RT],
        query: FixFunMinResQuery[FT],
        /,
    ) -> Interval[UpperSet[RT]]:
        r"""

        Solves the problem of finding the minimal resources needed to satisfy a given functional requirement.

        The problem is defined by a DP and a query. The model is a DP, and the query is an
        object that belongs to the poset $\F$ of the functionalities of the DP.

        The solution is an interval of upper sets (of objects of $\R$).


        For example, this is what we expect from a solver for an empty catalogue:

        ```python

            solver: SolverInterface = ...

            P = FinitePoset({'a', 'b'}, {('a', 'b')})

            empty_catalogue = CatalogueDP(F=P, R=P, entries={})

            result = solver.solve_dp_FixFunMinRes(empty, 'a')

            assert result.pessimistic == result.optimistic == UpperSet([])

        ```

        For example, for the identity:


        ```python

            solver: SolverInterface = ...

            P = FinitePoset({'a', 'b'}, {('a', 'b')})

            empty_catalogue = IdentityDP(F=P, R=P)

            result = solver.solve_dp_FixFunMinRes(empty, 'a')

            assert result.pessimistic == result.optimistic == UpperSet(['a'])

        ```

        Parameters:
            dp: A design problem.
            query: The query.



        Returns:

            An interval of upper sets.
        """
        if not isinstance(dp, PrimitiveDP):  # type: ignore
            raise TypeError(f"Expected a PrimitiveDP, got {type(dp)}")
        tname = type(dp).__name__
        fname = f"solve_dp_FixFunMinRes_{tname}"
        DPSolverInterface.fixfunminres_used.add(fname)
        F = dp.F
        if not F.belongs(query.functionality):
            msg = f"The query functionality {query.functionality} do not belong to the poset of functionalities {F}"
            raise ValueError(msg)

        solution = self._call_function(fname, dp, query)
        assert isinstance(solution, Interval), (fname, solution)
        assert isinstance(solution.pessimistic, UpperSet), (fname, solution)
        assert isinstance(solution.optimistic, UpperSet), (fname, solution)
        return solution

    @final
    def solve_dp_FixResMaxFun(
        self,
        dp: PrimitiveDP[FT, RT],
        query: FixResMaxFunQuery[RT],
    ) -> Interval[LowerSet[FT]]:
        """
        Solves the problem of finding the maximal functionality that can be provided with a given budget of
        resources.
        It is the dual of solve_dp_FixFunMinRes.

        Parameters:
            dp: A design problem.
            query: The query.

        Returns:

            An interval of lower sets.
        """
        if not isinstance(dp, PrimitiveDP):  # type: ignore
            raise TypeError(f"Expected a PrimitiveDP, got {type(dp)}")
        tname = type(dp).__name__
        fname = f"solve_dp_FixResMaxFun_{tname}"
        DPSolverInterface.fixresmaxfun_used.add(fname)

        R = dp.R
        if not R.belongs(query.resources):
            msg = f"The query resources {query.resources} do not belong to the poset of resources {R}"
            raise ValueError(msg)

        solution = self._call_function(fname, dp, query)
        assert isinstance(solution, Interval), (fname, solution)
        assert isinstance(solution.pessimistic, LowerSet), (fname, solution)
        assert isinstance(solution.optimistic, LowerSet), (fname, solution)
        return solution

    @overload
    def _call_function(
        self, fname: str, dp: PrimitiveDP[FT, RT], query: FixResMaxFunQuery[RT]
    ) -> Interval[LowerSet[FT]]:
        ...

    @overload
    def _call_function(
        self, fname: str, dp: PrimitiveDP[FT, RT], query: FixFunMinResQuery[FT]
    ) -> Interval[UpperSet[RT]]:
        ...

    def _call_function(
        self, fname: str, dp: PrimitiveDP[FT, RT], query: FixResMaxFunQuery[RT] | FixFunMinResQuery[FT]
    ) -> Interval[LowerSet[FT]] | Interval[UpperSet[RT]]:
        tname = type(dp).__name__

        try:
            f = getattr(self, fname)
        except AttributeError:
            msg = f"I expect to find a function named {fname} for handling a DP of type {tname}"
            raise FunctionNotImplemented(msg) from None

        try:
            return f(dp, query)
        except NotImplementedError as e:
            msg = f"{fname} raised a NotImplementedError: {str(e)}"
            raise NotImplementedError(msg) from e

    # 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.

        raise NotImplementedError

    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.

        raise NotImplementedError

    # 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

        raise NotImplementedError

    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

        raise NotImplementedError

    # 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
        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
            ...

        raise NotImplementedError

    def solve_dp_FixResMaxFun_CatalogueDP(
        self, dp: CatalogueDP[FT, RT], query: FixResMaxFunQuery[RT]
    ) -> Interval[LowerSet[FT]]:
        # Same pattern as above, but functionalities and resources are swapped.

        raise NotImplementedError

    # 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.

        raise NotImplementedError

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

    # 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.
        raise NotImplementedError

    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.

        raise NotImplementedError

    # 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)

        raise NotImplementedError

    # 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]]:
        raise NotImplementedError

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

    # 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

        raise NotImplementedError

    # 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]]:
        # this is a relation of the type
        #  (f1 ≤  r) and (f2 ≤ r) and (f3 ≤ r) and ...

        # This direction is easy, we just add the resources

        raise NotImplementedError

    # 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, ...]]]:
        raise NotImplementedError

    # 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:
            raise NotImplementedError("TODO: join")
        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, ...]]]:
        raise NotImplementedError

    # 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
        raise NotImplementedError

    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
        raise NotImplementedError

    # 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().

        raise NotImplementedError

    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

        # You will need to use LowerSet.product()
        raise NotImplementedError

    # 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.

        raise NotImplementedError

    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...
        raise NotImplementedError

    # These are for lib3-advanced. You can skip them.

    # These are very boring ones, already implemented

    # Ambient conversion

    def solve_dp_FixFunMinRes_AmbientConversion(
        self, dp: AmbientConversion[X], query: FixFunMinResQuery[X]
    ) -> Interval[UpperSet[X]]:
        f = query.functionality
        us = dp.R.largest_upperset_above(f)
        return Interval.degenerate(us)

    def solve_dp_FixResMaxFun_AmbientConversion(
        self, dp: AmbientConversion[X], query: FixResMaxFunQuery[X]
    ) -> Interval[LowerSet[X]]:
        r = query.resources
        us = dp.F.largest_lowerset_below(r)
        return Interval.degenerate(us)

    # unit conversion

    def solve_dp_FixFunMinRes_UnitConversion(
        self, dp: UnitConversion, query: FixFunMinResQuery[Decimal]
    ) -> Interval[UpperSet[Decimal]]:
        f = query.functionality
        assert isinstance(f, Decimal), f
        factor: Fraction = dp.factor
        num = factor.numerator
        den = factor.denominator
        min_r = f * num / den
        us = dp.R.largest_upperset_above(min_r)
        return Interval.degenerate(us)

    def solve_dp_FixResMaxFun_UnitConversion(
        self, dp: UnitConversion, query: FixResMaxFunQuery[Decimal]
    ) -> Interval[LowerSet[Decimal]]:
        r = query.resources
        assert isinstance(r, Decimal), r
        factor: Fraction = dp.factor
        num = factor.numerator
        den = factor.denominator
        max_f = r * den / num
        ls = dp.R.largest_lowerset_below(max_f)
        return Interval.degenerate(ls)

    # Mux

    def solve_dp_FixFunMinRes_Mux(
        self, dp: Mux, query: FixFunMinResQuery[object]
    ) -> Interval[UpperSet[object]]:
        cco = cco_map_value  # FIXME

        r = dp.coords.get_it(query.functionality, cco=cco)  # type: ignore
        return Interval.degenerate(UpperSet.principal(r))

        raise NotImplementedError

    def solve_dp_FixResMaxFun_Mux(
        self, dp: Mux, query: FixResMaxFunQuery[object]
    ) -> Interval[LowerSet[object]]:
        cco = cco_map_value  # FIXME

        r = dp.coords2.get_it(query.resources, cco=cco)  # type: ignore
        return Interval.degenerate(LowerSet.principal(r))

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

        raise NotImplementedError

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

        # this is the difficult direction

        raise NotImplementedError

    def solve_dp_FixResMaxFun_M_Res_AddMany_DP(
        self, dp: M_Res_AddMany_DP, query: FixResMaxFunQuery[Decimal]
    ) -> Interval[LowerSet[tuple[Decimal, ...]]]:
        # f1 + f2 + f3 + ... <= r
        # this is the hard direction
        raise NotImplementedError

    # power

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

        min_r = exponentiate_up(f, dp.num, dp.den)
        us = dp.R.largest_upperset_above(min_r)
        return Interval.degenerate(us)

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

        min_r = exponentiate_up(r, dp.den, dp.num)  # <-- note switch
        ls = dp.R.largest_lowerset_below(min_r)
        return Interval.degenerate(ls)

solve_dp_FixFunMinRes(dp, query)

Solves the problem of finding the minimal resources needed to satisfy a given functional requirement.

The problem is defined by a DP and a query. The model is a DP, and the query is an object that belongs to the poset \(\F\) of the functionalities of the DP.

The solution is an interval of upper sets (of objects of \(\R\)).

For example, this is what we expect from a solver for an empty catalogue:

    solver: SolverInterface = ...

    P = FinitePoset({'a', 'b'}, {('a', 'b')})

    empty_catalogue = CatalogueDP(F=P, R=P, entries={})

    result = solver.solve_dp_FixFunMinRes(empty, 'a')

    assert result.pessimistic == result.optimistic == UpperSet([])

For example, for the identity:

    solver: SolverInterface = ...

    P = FinitePoset({'a', 'b'}, {('a', 'b')})

    empty_catalogue = IdentityDP(F=P, R=P)

    result = solver.solve_dp_FixFunMinRes(empty, 'a')

    assert result.pessimistic == result.optimistic == UpperSet(['a'])

Parameters:

Name Type Description Default
dp PrimitiveDP[FT, RT]

A design problem.

required
query FixFunMinResQuery[FT]

The query.

required

Returns:

An interval of upper sets.
Source code in src/act4e_mcdp/solution_interface.py
@final
def solve_dp_FixFunMinRes(
    self,
    dp: PrimitiveDP[FT, RT],
    query: FixFunMinResQuery[FT],
    /,
) -> Interval[UpperSet[RT]]:
    r"""

    Solves the problem of finding the minimal resources needed to satisfy a given functional requirement.

    The problem is defined by a DP and a query. The model is a DP, and the query is an
    object that belongs to the poset $\F$ of the functionalities of the DP.

    The solution is an interval of upper sets (of objects of $\R$).


    For example, this is what we expect from a solver for an empty catalogue:

    ```python

        solver: SolverInterface = ...

        P = FinitePoset({'a', 'b'}, {('a', 'b')})

        empty_catalogue = CatalogueDP(F=P, R=P, entries={})

        result = solver.solve_dp_FixFunMinRes(empty, 'a')

        assert result.pessimistic == result.optimistic == UpperSet([])

    ```

    For example, for the identity:


    ```python

        solver: SolverInterface = ...

        P = FinitePoset({'a', 'b'}, {('a', 'b')})

        empty_catalogue = IdentityDP(F=P, R=P)

        result = solver.solve_dp_FixFunMinRes(empty, 'a')

        assert result.pessimistic == result.optimistic == UpperSet(['a'])

    ```

    Parameters:
        dp: A design problem.
        query: The query.



    Returns:

        An interval of upper sets.
    """
    if not isinstance(dp, PrimitiveDP):  # type: ignore
        raise TypeError(f"Expected a PrimitiveDP, got {type(dp)}")
    tname = type(dp).__name__
    fname = f"solve_dp_FixFunMinRes_{tname}"
    DPSolverInterface.fixfunminres_used.add(fname)
    F = dp.F
    if not F.belongs(query.functionality):
        msg = f"The query functionality {query.functionality} do not belong to the poset of functionalities {F}"
        raise ValueError(msg)

    solution = self._call_function(fname, dp, query)
    assert isinstance(solution, Interval), (fname, solution)
    assert isinstance(solution.pessimistic, UpperSet), (fname, solution)
    assert isinstance(solution.optimistic, UpperSet), (fname, solution)
    return solution

solve_dp_FixResMaxFun(dp, query)

Solves the problem of finding the maximal functionality that can be provided with a given budget of resources. It is the dual of solve_dp_FixFunMinRes.

Parameters:

Name Type Description Default
dp PrimitiveDP[FT, RT]

A design problem.

required
query FixResMaxFunQuery[RT]

The query.

required

Returns:

An interval of lower sets.
Source code in src/act4e_mcdp/solution_interface.py
@final
def solve_dp_FixResMaxFun(
    self,
    dp: PrimitiveDP[FT, RT],
    query: FixResMaxFunQuery[RT],
) -> Interval[LowerSet[FT]]:
    """
    Solves the problem of finding the maximal functionality that can be provided with a given budget of
    resources.
    It is the dual of solve_dp_FixFunMinRes.

    Parameters:
        dp: A design problem.
        query: The query.

    Returns:

        An interval of lower sets.
    """
    if not isinstance(dp, PrimitiveDP):  # type: ignore
        raise TypeError(f"Expected a PrimitiveDP, got {type(dp)}")
    tname = type(dp).__name__
    fname = f"solve_dp_FixResMaxFun_{tname}"
    DPSolverInterface.fixresmaxfun_used.add(fname)

    R = dp.R
    if not R.belongs(query.resources):
        msg = f"The query resources {query.resources} do not belong to the poset of resources {R}"
        raise ValueError(msg)

    solution = self._call_function(fname, dp, query)
    assert isinstance(solution, Interval), (fname, solution)
    assert isinstance(solution.pessimistic, LowerSet), (fname, solution)
    assert isinstance(solution.optimistic, LowerSet), (fname, solution)
    return solution

Solver for NamedDPs (graphs)