From 46b1f8f104ddbfc97b7dc2f332a6ad9a6322a302 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?K=C3=BChle=2C=20Laura=20Christine=20=28lakue103=29?=
 <laura.kuehle@uni-duesseldorf.de>
Date: Tue, 10 May 2022 18:12:30 +0200
Subject: [PATCH] Removed completed TODOs.

---
 Basis_Function.py   | 3 ---
 DG_Approximation.py | 5 -----
 2 files changed, 8 deletions(-)

diff --git a/Basis_Function.py b/Basis_Function.py
index 4184dd0..da720f3 100644
--- a/Basis_Function.py
+++ b/Basis_Function.py
@@ -2,9 +2,6 @@
 """
 @author: Laura C. Kühle
 
-TODO: Contemplate whether calculating projections during initialization can
-    save time -> Done (solved due to property attributes)
-
 """
 import numpy as np
 from sympy import Symbol, integrate
diff --git a/DG_Approximation.py b/DG_Approximation.py
index 24c3691..ce0c546 100644
--- a/DG_Approximation.py
+++ b/DG_Approximation.py
@@ -11,11 +11,6 @@ TODO: Contemplate moving stiffness and boundary matrix from update scheme
     to basis
 
 Urgent:
-TODO: Investigate protected vs. public variables -> Done
-TODO: Investigate decorators and properties -> Done
-TODO: Investigate how to make variables read-only -> Done
-TODO: Replace getter with property attributes for basis -> Done
-TODO: Contain polynomial degree in basis -> Done
 TODO: Improve docstring for Basis class
 TODO: Enforce abstract classes/methods (abc.ABC, abc.abstractmethod)
 TODO: Introduce Mesh class
-- 
GitLab