Skip to content
1 change: 1 addition & 0 deletions brainpy/analysis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
from .lowdim.lowdim_phase_plane import *
from .lowdim.lowdim_bifurcation import *

from .constants import *
from . import constants as C
from . import stability
from . import utils
12 changes: 12 additions & 0 deletions brainpy/analysis/base.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# -*- coding: utf-8 -*-


__all__ = [
'BrainPyAnalyzer'
]


class BrainPyAnalyzer(object):
"""Base class for analyzers in BrainPy"""
pass

9 changes: 9 additions & 0 deletions brainpy/analysis/constants.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# -*- coding: utf-8 -*-


__all__ = [
'CONTINUOUS',
'DISCRETE',
]


CONTINUOUS = 'continuous'
DISCRETE = 'discrete'

F_vmap_fx = 'F_vmap_fx'
F_vmap_fy = 'F_vmap_fy'
F_vmap_brentq_fx = 'F_vmap_brentq_fx'
Expand Down
Loading