spore_names.h
1 /*
2  * This file is part of SPORE.
3  *
4  * Copyright (C) 2016, the SPORE team (see AUTHORS).
5  *
6  * SPORE is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * SPORE is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with SPORE. If not, see <http://www.gnu.org/licenses/>.
18  *
19  * For more information see: https://github.com/IGITUGraz/spore-nest-module
20  *
21  * File: spore_names.h
22  * Author: Kappel
23  *
24  * Created on June 8, 2017, 5:51 PM
25  */
26 
27 #ifndef SPORE_NAMES_H
28 #define SPORE_NAMES_H
29 
30 #include "name.h"
31 
32 namespace spore
33 {
41 namespace names
42 {
43 extern const Name trace;
44 extern const Name delay;
45 extern const Name reward_in_proxy;
46 
47 extern const Name weight_update_time;
48 extern const Name bap_trace_id;
49 extern const Name recorder_times;
50 extern const Name recorder_interval;
51 extern const Name recorder_values;
52 extern const Name reset_recorder;
53 extern const Name test_name;
54 extern const Name test_time;
55 
56 extern const Name reward_transmitter;
57 extern const Name learning_rate;
58 extern const Name episode_length;
59 extern const Name psp_tau_rise;
60 extern const Name psp_tau_fall;
61 extern const Name temperature;
62 extern const Name gradient_noise;
63 extern const Name max_param;
64 extern const Name min_param;
65 extern const Name max_param_change;
66 extern const Name integration_time;
67 extern const Name direct_gradient_rate;
68 extern const Name parameter_mapping_offset;
69 extern const Name weight_scale;
70 extern const Name weight_update_interval;
71 extern const Name gradient_scale;
72 extern const Name dopa_trace_id;
73 extern const Name psp_cutoff_amplitude;
74 extern const Name simulate_retracted_synapses;
75 extern const Name delete_retracted_synapses;
76 
77 extern const Name synaptic_parameter;
78 extern const Name eligibility_trace;
79 extern const Name reward_gradient;
80 extern const Name prior_mean;
81 extern const Name prior_precision;
82 
83 extern const Name eligibility_trace_values;
84 extern const Name psp_values;
85 extern const Name weight_values;
86 extern const Name synaptic_parameter_values;
87 extern const Name reward_gradient_values;
88 
89 extern const Name tau_rise_exc;
90 extern const Name tau_fall_exc;
91 extern const Name tau_rise_inh;
92 extern const Name tau_fall_inh;
93 extern const Name input_conductance;
94 extern const Name target_rate;
95 extern const Name target_adaptation_speed;
96 extern const Name adaptive_threshold;
97 }
98 
99 }
100 
101 #endif
Global namespace holding all classes of the SPORE NEST module.
Definition: circular_buffer.h:31