Skip to content

Commit

Permalink
removed some more unnecessary stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
khalednasr committed Mar 23, 2014
1 parent 9f959b3 commit c58e077
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 20 deletions.
7 changes: 0 additions & 7 deletions src/shogun/neuralnets/NeuralLinearLayer.cpp
Expand Up @@ -20,13 +20,6 @@ CNeuralLinearLayer::CNeuralLinearLayer() : CNeuralLayer()
{
}

CNeuralLinearLayer::CNeuralLinearLayer(const CNeuralLinearLayer& orig)
: CNeuralLayer(orig)
{

}


CNeuralLinearLayer::CNeuralLinearLayer(int32_t num_neurons):
CNeuralLayer(num_neurons)
{
Expand Down
3 changes: 0 additions & 3 deletions src/shogun/neuralnets/NeuralLinearLayer.h
Expand Up @@ -26,9 +26,6 @@ class CNeuralLinearLayer : public CNeuralLayer
/** default constructor */
CNeuralLinearLayer();

/** copy constructor */
CNeuralLinearLayer(const CNeuralLinearLayer &orig);

/** Constuctor
*
* @param num_neurons Number of neurons in this layer
Expand Down
7 changes: 0 additions & 7 deletions src/shogun/neuralnets/NeuralLogisticLayer.cpp
Expand Up @@ -16,13 +16,6 @@ CNeuralLogisticLayer::CNeuralLogisticLayer() : CNeuralLinearLayer()
{
}

CNeuralLogisticLayer::CNeuralLogisticLayer(const CNeuralLogisticLayer& orig)
: CNeuralLinearLayer(orig)
{

}


CNeuralLogisticLayer::CNeuralLogisticLayer(int32_t num_neurons):
CNeuralLinearLayer(num_neurons)
{
Expand Down
3 changes: 0 additions & 3 deletions src/shogun/neuralnets/NeuralLogisticLayer.h
Expand Up @@ -25,9 +25,6 @@ class CNeuralLogisticLayer : public CNeuralLinearLayer
/** default constructor */
CNeuralLogisticLayer();

/** copy constructor */
CNeuralLogisticLayer(const CNeuralLogisticLayer &orig);

/** Constuctor
*
* @param num_neurons Number of neurons in this layer
Expand Down

0 comments on commit c58e077

Please sign in to comment.