Skip to content
Snippets Groups Projects
Commit 43138607 authored by Franck Dary's avatar Franck Dary
Browse files

Added missing override indicator

parent e5bbbb48
Branches
No related tags found
No related merge requests found
...@@ -145,7 +145,7 @@ class GeneticAlgorithm : public NeuralNetwork ...@@ -145,7 +145,7 @@ class GeneticAlgorithm : public NeuralNetwork
/// ///
/// @param output Where the topology will be printed. /// @param output Where the topology will be printed.
void printTopology(FILE * output) override; void printTopology(FILE * output) override;
void endOfIteration(); void endOfIteration() override;
}; };
#endif #endif
...@@ -94,7 +94,7 @@ class MLP : public NeuralNetwork ...@@ -94,7 +94,7 @@ class MLP : public NeuralNetwork
/// ///
/// @return A pointer to the newly allocated trainer. /// @return A pointer to the newly allocated trainer.
dynet::Trainer * createTrainer(); dynet::Trainer * createTrainer();
void endOfIteration(); void endOfIteration() override;
}; };
#endif #endif
...@@ -94,7 +94,7 @@ class MultiMLP : public NeuralNetwork ...@@ -94,7 +94,7 @@ class MultiMLP : public NeuralNetwork
/// ///
/// @return A pointer to the newly allocated trainer. /// @return A pointer to the newly allocated trainer.
dynet::Trainer * createTrainer(); dynet::Trainer * createTrainer();
void endOfIteration(); void endOfIteration() override;
}; };
#endif #endif
...@@ -96,7 +96,7 @@ class ReversedMLP : public NeuralNetwork ...@@ -96,7 +96,7 @@ class ReversedMLP : public NeuralNetwork
/// ///
/// @return A pointer to the newly allocated trainer. /// @return A pointer to the newly allocated trainer.
dynet::Trainer * createTrainer(); dynet::Trainer * createTrainer();
void endOfIteration(); void endOfIteration() override;
}; };
#endif #endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment