summaryrefslogtreecommitdiffstats
path: root/src/act4e_solutions/posets_representation.py
blob: c43da82d5d6b1b3cc14a0ac2646bd64a6089a43e (plain)
1
2
3
4
5
6
7
8
9
10
11
from typing import Any

import act4e_interfaces as I


class SolFinitePosetRepresentation(I.FinitePosetRepresentation):
    def load(self, h: I.IOHelper, s: I.FinitePoset_desc) -> I.FinitePoset[Any]:
        raise NotImplementedError()

    def save(self, h: I.IOHelper, p: I.FinitePoset[Any]) -> I.FinitePoset_desc:
        raise NotImplementedError()