Skip to content
Snippets Groups Projects
Commit c98fbca1 authored by Martin Beseda's avatar Martin Beseda
Browse files

WIP: Removing memory leaks

parent aea7c2f7
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ int main(int argc, char** argv) {
double prec_lm = 1e-9;
int restart_interval = 500;
int max_n_iters_gradient = 10000;
int max_n_iters_gradient_lm = 10000;
int max_n_iters_gradient_lm = 10;
int max_n_iters_swarm = 5;
int n_particles_swarm = 200;
unsigned long batch_size = 0;
......@@ -85,7 +85,7 @@ int main(int argc, char** argv) {
l4n::LearningSequence learning_sequence( 1e-6, max_number_of_cycles );
learning_sequence.add_learning_method( &rnd );
learning_sequence.add_learning_method( &ps );
// learning_sequence.add_learning_method( &ps );
learning_sequence.add_learning_method( &leven );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment