Skip to content

Commit

Permalink
dd
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoskon committed Oct 12, 2022
1 parent 415a1c8 commit e6117e3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cblb/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ def merge_N(x,y):
y1 = np.append(np.zeros([y.shape[0], x.shape[1]]), y, axis=1)
return np.append(x1,y1,axis=0)

# a model of inverter
def not_cell(state, params):
L_X, x, y, N_X, N_Y = state
delta_L, gamma_L_X, n_y, theta_L_X, eta_x, omega_x, m_x, delta_x, rho_x = params
Expand Down Expand Up @@ -55,7 +56,7 @@ def not_cell_stochastic(state, params, Omega):

return p


# a model of driver
def yes_cell(state, params):
x, y, N_X, N_Y = state
gamma_x, n_y, theta_x, delta_x, rho_x = params
Expand Down

0 comments on commit e6117e3

Please sign in to comment.