add key to the abstract class

This commit is contained in:
Valentin Boettcher 2022-01-13 14:00:10 +01:00
parent 7303f2038c
commit 98c8b02478

View file

@ -95,7 +95,7 @@ class StocProc(abc.ABC):
self.t_max = t_max
self.num_grid_points = num_grid_points
self.t = np.linspace(0, t_max, num_grid_points)
self.key = "generic"
self._z = None
self._interpolator = None
self._interpolator_dot = None