Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions parcels/interaction/interactionkernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,6 @@ def __radd__(self, kernel):
kernel = InteractionKernel(self.fieldset, self.ptype, pyfunc=kernel)
return kernel.merge(self, InteractionKernel)

def __del__(self):
# Clean-up the in-memory dynamic linked libraries.
# This is not really necessary, as these programs are not that large, but with the new random
# naming scheme which is required on Windows OS'es to deal with updates to a Parcels' kernel.)
super().__del__()

def execute_python(self, pset, endtime, dt):
"""Performs the core update loop via Python.

Expand Down
Loading