MCPcopy Create free account
hub / github.com/NeuralNetworkVerification/Marabou / NeuronInformation

Class NeuronInformation

src/engine/InputQuery.cpp:885–903  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 10

constructReluLayerMethod · 0.85
constructRoundLayerMethod · 0.85
constructSigmoidLayerMethod · 0.85
constructSignLayerMethod · 0.85
constructMaxLayerMethod · 0.85
constructSoftmaxLayerMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected