Skip to content

Commit 5cad097

Browse files
committed
rm TODOs
1 parent 0a35cab commit 5cad097

File tree

4 files changed

+1
-26
lines changed

4 files changed

+1
-26
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "pyANOVAapprox"
7-
version = "0.2.2"
7+
version = "0.2.3"
88
authors = [
99
{ name="Felix Wirth", email="fwi012001@gmail.com" },
1010
]

src/pyANOVAapprox/__init__.py

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,6 @@
99

1010
# from sklearn.metrics import roc_auc_score
1111

12-
13-
def get_superposition_set(d, ds): # TODO: Später funktion aut GT verwenden
14-
"""
15-
get_superposition_set( d::Int, ds::Int )::Vector{Vector{Int}}
16-
17-
This function returns ``U^{(d,ds)} = \{ \pmb u \subset \{1,2,\dots,d\} : |\pmb u| \leq ds \}``.
18-
"""
19-
nset = [[j] for j in range(d)]
20-
returnset = [[]] + nset
21-
for i in range(ds - 1):
22-
nextnset = []
23-
for s in nset:
24-
for j in range(d):
25-
if s[-1] < j:
26-
nextnset.append(s + [j])
27-
returnset = returnset + nextnset
28-
nset = nextnset
29-
30-
return [tuple(item) for item in returnset]
31-
32-
3312
def bisection(l, r, fun, maxiter=1000):
3413
lval = fun(l)
3514
rval = fun(r)

src/pyANOVAapprox/approx.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# from pyGroupedTransforms.GroupedTransform import * # TODO: Kann wahrscheinlich weg sobald in pyGroupedTransform GreoupedTransform exportiert wird
2-
31
from pyANOVAapprox import *
42
from pyANOVAapprox.fista import *
53

src/pyANOVAapprox/fista.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# from pyGroupedTransforms.GroupedCoefficients import * # TODO: Kann wahrscheinlich weg sobald in pyGroupedTransform GreoupedTransform exportiert wird
2-
31
from pyANOVAapprox import *
42

53

0 commit comments

Comments
 (0)