Home | Trees | Indices | Help |
|
---|
|
1 # Differential-delay system (incomplete) 2 3 from allimports import * 4 from baseclasses import ctsGen 5 from PyDSTool.utils import * 6 from PyDSTool.common import * 7 8 # Other imports 9 from numpy import Inf, NaN, isfinite, sometrue, alltrue, array 10 import math, random 11 from copy import copy, deepcopy 12 try: 13 # use pscyo JIT byte-compiler optimization, if available 14 import psyco 15 HAVE_PSYCO = True 16 except ImportError: 17 HAVE_PSYCO = False 18 19 # ----------------------------------------------------------------------------- 20 39
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Sun Dec 2 23:44:39 2012 | http://epydoc.sourceforge.net |