-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcells.cpp
94 lines (68 loc) · 2.19 KB
/
cells.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* vim: set ft=cpp: */
#include "bcbg2.hpp"
// the implementation of nucleus cell is not finished, and code for it is not released. The skeleton of functions is left here as to not break the compilation...
void BCBG2::NucleusCells::initialize_cells(int cells_n, float Smax, float Sini, float V_threshold, float k, float V_rest, float R, float Rm, float Ri, float* dists, float* diams, int compartment_nb, const char* id, int nucleus_number)
{
}
int BCBG2::NucleusCells::affect_ion_channel(float A, float D, float Vrev, bool is_nmda)
{
return(0);
}
void BCBG2::NucleusCells::add_afferent_axon(NucleusCells* nc, float cs, int T, float C, float distance_factor, int ion_channel_n)
{
}
void BCBG2::NucleusCells::add_efferent_axon(NucleusCells* nc, float cs, int T, float C, float distance_factor, int ion_channel_n)
{
}
void BCBG2::NucleusCells::add_afferent_synapse(NucleusCells* source_nucleus, float cs, int T, float C, float distance_factor, int ion_channel_n)
{
}
bool BCBG2::NucleusCells::set_afferent(float A, float D, int S, float C, int T, float cs, float distance, NucleusCells* N)
{
return(0);
}
bool BCBG2::NucleusCells::add(float A, float D, float Vrev, float C, int T, float cs, float distance, NucleusCells* N)
{
return(0);
}
bool BCBG2::NucleusCells::nmda(float A, float D, float Vrev, float C, int T, float cs, float distance, NucleusCells* N)
{
return(0);
}
bool BCBG2::NucleusCells::add_ampa_gaba_nmda(float A, float D, float Vrev, float C, int T, float cs, float distance, NucleusCells* N, bool is_nmda)
{
return(0);
}
void BCBG2::NucleusCells::set_dt(float value)
{
}
void BCBG2::NucleusCells::fast_add_g(int cell_i, int ion_channel_i, float distance_factor, float t_sent)
{
}
void BCBG2::NucleusCells::add_g(int cell_i, int ion_channel_i, float distance_factor, float t_sent)
{
}
void BCBG2::NucleusCells::update_cells()
{
}
void BCBG2::NucleusCells::set_rate(float rate)
{
}
void BCBG2::NucleusCells::set_rate(float rate, bool reset)
{
}
void BCBG2::NucleusCells::prepare_next_iteration()
{
}
void BCBG2::NucleusCells::display_summary(std::ostream& os)
{
}
void BCBG2::NucleusCells::display(std::ostream& os)
{
}
void BCBG2::NucleusCells::save()
{
}
void BCBG2::NucleusCells::restore()
{
}