| 883 | { |
| 884 | INPUT_QUERY_LOG( "Attempting to construct weightedSumLayer..." ); |
| 885 | struct NeuronInformation |
| 886 | { |
| 887 | public: |
| 888 | NeuronInformation( unsigned variable, unsigned neuron, const Equation *eq ) |
| 889 | : _variable( variable ) |
| 890 | , _neuron( neuron ) |
| 891 | , _eq( eq ) |
| 892 | { |
| 893 | } |
| 894 | |
| 895 | NeuronInformation() |
| 896 | : _eq( NULL ) |
| 897 | { |
| 898 | } |
| 899 | |
| 900 | unsigned _variable; |
| 901 | unsigned _neuron; |
| 902 | const Equation *_eq; |
| 903 | }; |
| 904 | |
| 905 | List<NeuronInformation> newNeurons; |
| 906 |
no outgoing calls
no test coverage detected