Skip to content

Commit bd14507

Browse files
committed
indent formatting
1 parent 5162ffe commit bd14507

354 files changed

Lines changed: 79219 additions & 79761 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

brainpy/_src/_delay.py

Lines changed: 272 additions & 273 deletions
Large diffs are not rendered by default.

brainpy/_src/analysis/__init__.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,9 @@
1414
Details in the following.
1515
"""
1616

17+
from . import constants as C, stability, plotstyle, utils
1718
from .base import *
18-
19+
from .constants import *
1920
from .highdim.slow_points import *
20-
21-
from .lowdim.lowdim_phase_plane import *
2221
from .lowdim.lowdim_bifurcation import *
23-
24-
from .constants import *
25-
from . import constants as C, stability, plotstyle, utils
22+
from .lowdim.lowdim_phase_plane import *

brainpy/_src/analysis/base.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22

33

44
__all__ = [
5-
'DSAnalyzer'
5+
'DSAnalyzer'
66
]
77

88

99
class DSAnalyzer(object):
10-
"""Base class of analyzers for dynamical systems in BrainPy"""
11-
pass
12-
10+
"""Base class of analyzers for dynamical systems in BrainPy"""
11+
pass

brainpy/_src/analysis/constants.py

Lines changed: 36 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -2,46 +2,44 @@
22

33

44
__all__ = [
5-
'F_vmap_fx',
6-
'F_vmap_fy',
7-
'F_vmap_brentq_fx',
8-
'F_vmap_brentq_fy',
9-
'F_vmap_fp_aux',
10-
'F_vmap_fp_opt',
11-
'F_vmap_dfxdx',
12-
'F_fx',
13-
'F_fy',
14-
'F_fz',
15-
'F_dfxdx',
16-
'F_dfxdy',
17-
'F_dfydx',
18-
'F_dfydy',
19-
'F_jacobian',
20-
'F_vmap_jacobian',
21-
'F_fixed_point_aux',
22-
'F_fixed_point_opt',
23-
'F_x_by_y',
24-
'F_y_by_x',
25-
'F_y_convert',
26-
'F_x_convert',
27-
'F_int_x',
28-
'F_int_y',
29-
'x_by_y',
30-
'y_by_x',
31-
'y_by_x_in_fy',
32-
'y_by_x_in_fx',
33-
'x_by_y_in_fx',
34-
'x_by_y_in_fy',
35-
'F_y_by_x_in_fy',
36-
'F_x_by_y_in_fy',
37-
'F_y_by_x_in_fx',
38-
'F_x_by_y_in_fx',
39-
'fx_nullcline_points',
40-
'fy_nullcline_points',
5+
'F_vmap_fx',
6+
'F_vmap_fy',
7+
'F_vmap_brentq_fx',
8+
'F_vmap_brentq_fy',
9+
'F_vmap_fp_aux',
10+
'F_vmap_fp_opt',
11+
'F_vmap_dfxdx',
12+
'F_fx',
13+
'F_fy',
14+
'F_fz',
15+
'F_dfxdx',
16+
'F_dfxdy',
17+
'F_dfydx',
18+
'F_dfydy',
19+
'F_jacobian',
20+
'F_vmap_jacobian',
21+
'F_fixed_point_aux',
22+
'F_fixed_point_opt',
23+
'F_x_by_y',
24+
'F_y_by_x',
25+
'F_y_convert',
26+
'F_x_convert',
27+
'F_int_x',
28+
'F_int_y',
29+
'x_by_y',
30+
'y_by_x',
31+
'y_by_x_in_fy',
32+
'y_by_x_in_fx',
33+
'x_by_y_in_fx',
34+
'x_by_y_in_fy',
35+
'F_y_by_x_in_fy',
36+
'F_x_by_y_in_fy',
37+
'F_y_by_x_in_fx',
38+
'F_x_by_y_in_fx',
39+
'fx_nullcline_points',
40+
'fy_nullcline_points',
4141
]
4242

43-
44-
4543
CONTINUOUS = 'continuous'
4644
DISCRETE = 'discrete'
4745

@@ -83,4 +81,3 @@
8381
fx_nullcline_points = 'fx_nullcline_points'
8482
fy_nullcline_points = 'fy_nullcline_points'
8583
prefix = '\t'
86-

0 commit comments

Comments
 (0)