Skip to content
Snippets Groups Projects
Commit 2f906bb8 authored by Ivan Kondov's avatar Ivan Kondov
Browse files

changed keyword arguments to mandatory arguments

parent 776c8333
No related branches found
No related tags found
No related merge requests found
......@@ -4,8 +4,8 @@ import numpy as np
class Propagator:
""" Base class for all propagators for classical particle dynamics """
name = 'generic'
def __init__(self, syst=None, tstart=None, tend=None,
tstep=None, substep=None, pbc=False, tqdm=False):
def __init__(self, syst, tstart, tend, tstep, substep=None, pbc=False,
tqdm=False):
self.q = syst.q0
self.p = syst.p0
self.q0 = syst.q0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment