Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
patnr committed Sep 8, 2023
1 parent 89b1c0e commit 4063f16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions TPFA_ResSim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,9 @@ def sim(self, dt, nSteps, x0, pbar=True, leave=True, **kwargs):
.. note:: `output[0] == x0`, hence `len(output) = nSteps + 1`.
.. note::
"Recurse" is a fancy programming term referring to a function calling itself.
Here we implement it simply by a for loop, passing previous output as next intput.
Indeed "recursive" is also an accurate description of causal (Markov) processes,
"Recurse" is a describes a function calling itself.
Here we implement it simply by a for loop.
"Wecursive" is also an accurate description of causal (Markov) processes,
such as nature or its simulators, which build on themselves.
"""
# Init
Expand Down

0 comments on commit 4063f16

Please sign in to comment.