Skip to content

Commit 2f10eab

Browse files
committed
Leftover docstring type annotations in qgs
1 parent d00cae9 commit 2f10eab

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

dabench/data/_qgs.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def rhs(self,
128128
t: times vector. Required as argument slot for some numerical
129129
integrators but unused.
130130
Returns:
131-
dx: vector field of qgs
131+
Vector field of qgs
132132
133133
"""
134134

@@ -138,7 +138,7 @@ def rhs(self,
138138

139139
def Jacobian(self,
140140
x: ArrayLike,
141-
t: float | None = 0
141+
t: float | None = 0
142142
) -> np.ndarray:
143143
"""Jacobian of the qgs system
144144
@@ -148,7 +148,7 @@ def Jacobian(self,
148148
integrators but unused.
149149
150150
Returns:
151-
J (ndarray): Jacobian matrix, shape: (system_dim, system_dim)
151+
J: Jacobian matrix, shape: (system_dim, system_dim)
152152
153153
"""
154154

@@ -294,7 +294,7 @@ def rhs_aux(self,
294294
t: Array of times with size (time_dim)
295295
296296
Returns:
297-
dxaux (ndarray): State vector [size: (system_dim,)]
297+
State vector [size: (system_dim,)]
298298
"""
299299
# Compute M
300300
dxdt = self.rhs(x[:self.system_dim], t)

0 commit comments

Comments
 (0)