2.4.1.7. sdepy.paths_generator.exit

paths_generator.exit(tt, xx)[source]

Final tasks and construction of the output value(s).

Parameters:
tt : array

Output timeline. It is the timeline passed to the __call__ method, cast as an array, with its original data-type (if the data-type is of integer kind, the simulation is carried out using floats).

xx : array

Output values along the timeline, as computed by next and stored by store methods.

Notes

It is called once, after backwards and/or forwards simulations have been completed, and its return value is returned.

Default implementation:

return tt, xx

May be provided by subclasses.