diff options
author | Andrea Censi <acensi@ethz.ch> | 2022-02-21 18:01:11 +0100 |
---|---|---|
committer | Andrea Censi <acensi@ethz.ch> | 2022-02-21 18:01:11 +0100 |
commit | 0611a2faef0ac8fdc8e65c92d7efb4c12a4f1879 (patch) | |
tree | a2c18ec0844e0c447f825ba2fa52e56e74788c2a /src/act4e_solutions/sets.py | |
parent | fix (diff) | |
parent | Bump to version 7.1.2202211124 [ci skip] (diff) | |
download | act4e-0611a2faef0ac8fdc8e65c92d7efb4c12a4f1879.tar.gz act4e-0611a2faef0ac8fdc8e65c92d7efb4c12a4f1879.zip |
Merge branch 'alphubel-stage' of github.com:ACT4E/ACT4E-exercises-template into alphubel-stage
Diffstat (limited to 'src/act4e_solutions/sets.py')
-rw-r--r-- | src/act4e_solutions/sets.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/act4e_solutions/sets.py b/src/act4e_solutions/sets.py new file mode 100644 index 0000000..1dc635f --- /dev/null +++ b/src/act4e_solutions/sets.py @@ -0,0 +1,14 @@ +from typing import Callable, TypeVar + +import act4e_interfaces as I + +X = TypeVar("X") + + +class SolEnumerableSetsOperations(I.EnumerableSetsOperations): + def make_set_sequence(self, f: Callable[[int], X]) -> I.EnumerableSet[X]: + raise NotImplementedError() + + def union_esets(self, a: I.EnumerableSet[X], b: I.EnumerableSet[X]) -> I.EnumerableSet[X]: + """Creates the union of two EnumerableSet.""" + raise NotImplementedError() |