Skip to content

Commit

Permalink
Removed testing function.
Browse files Browse the repository at this point in the history
  • Loading branch information
DuncDennis committed Mar 12, 2023
1 parent 4c8d7e5 commit b7a79bc
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions src/lorenzpy/simulations.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,20 +194,3 @@ def flow(self, x: np.ndarray) -> np.ndarray:
x[0] * x[1] - self.beta * x[2],
]
)


def double_num(x: float) -> float:
"""Double a number.
Examples:
>>> double_num(3)
6
Args:
x: Input number to be doubled.
Returns:
Double of x.
"""
return 2 * x

0 comments on commit b7a79bc

Please sign in to comment.