Home
last modified time | relevance | path

Searched refs:smolSetSimTimes (Results 1 – 6 of 6) sorted by relevance

/dports/science/smoldyn/smoldyn-2.67/source/Smoldyn/
H A Dsmoldynlib.py46 smolSetSimTimes = smoldyn.smolSetSimTimes variable
47 smolSetSimTimes.restype = c_int
48 smolSetSimTimes.argtypes = [c_void_p, c_double, c_double, c_double]
H A Dlibsmoldyn.h66 enum ErrorCode smolSetSimTimes(simptr sim,double timestart,double timestop,double timestep);
H A Dlibsmoldyn.cpp394 extern CSTRING enum ErrorCode smolSetSimTimes(simptr sim,double timestart,double timestop,double ti… in smolSetSimTimes() function
/dports/science/smoldyn/smoldyn-2.67/examples/S97_libsmoldyn/
H A Dtest1.c41 smolSetSimTimes(sim, 0.0, 250.0, 0.01); in main()
/dports/science/smoldyn/smoldyn-2.67/examples/S97_libsmoldyn/testcode/
H A Dtestcode.c49 smolSetSimTimes(sim,0,2,0.001); in main()
/dports/science/smoldyn/smoldyn-2.67/source/python/
H A Dmodule.cpp462 return smolSetSimTimes(sim.getSimPtr(), timestart, timestop, timestep); in PYBIND11_MODULE()