Skip to content
Snippets Groups Projects
Commit 460e10ff authored by Laura Christine Kühle's avatar Laura Christine Kühle
Browse files

Fixed wrong type for number of quadrature nodes.

parent 52ac1084
No related branches found
No related tags found
No related merge requests found
...@@ -30,6 +30,7 @@ Urgent: ...@@ -30,6 +30,7 @@ Urgent:
TODO: Add Burgers class completely TODO: Add Burgers class completely
TODO: Add 'update_time_step()' to Burgers -> Done TODO: Add 'update_time_step()' to Burgers -> Done
TODO: Add derivative basis to Basis class -> Done TODO: Add derivative basis to Basis class -> Done
TODO: Fix wrong type for number of quadrature nodes -> Done
TODO: Add 'solve_exactly()' to Burgers TODO: Add 'solve_exactly()' to Burgers
TODO: Add 'update_right_hand_side()' to Burgers TODO: Add 'update_right_hand_side()' to Burgers
TODO: Add initialization to Burgers TODO: Add initialization to Burgers
......
...@@ -58,7 +58,7 @@ class Quadrature(ABC): ...@@ -58,7 +58,7 @@ class Quadrature(ABC):
return self.__class__.__name__ return self.__class__.__name__
@property @property
def num_nodes(self) -> str: def num_nodes(self) -> int:
"""Return number of nodes.""" """Return number of nodes."""
return self._num_nodes return self._num_nodes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment