Skip to content

Commit

Permalink
fixed bug in fann_copy of not copying training_algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
steffennissen committed Jul 6, 2013
1 parent d3c8935 commit 3527be8
Show file tree
Hide file tree
Showing 12 changed files with 1 addition and 0 deletions.
Binary file modified bin/fanndouble.dll
Binary file not shown.
Binary file modified bin/fanndouble.lib
Binary file not shown.
Binary file modified bin/fannfixed.dll
Binary file not shown.
Binary file modified bin/fannfixed.lib
Binary file not shown.
Binary file modified bin/fannfloat.dll
Binary file not shown.
Binary file modified bin/fannfloat.lib
Binary file not shown.
Binary file modified bin/simple_train_double.exe
Binary file not shown.
Binary file modified bin/simple_train_float.exe
Binary file not shown.
Binary file modified bin/xor_test_fixed.exe
Binary file not shown.
Binary file modified bin/xor_test_float.exe
Binary file not shown.
Binary file modified bin/xor_train.exe
Binary file not shown.
1 change: 1 addition & 0 deletions src/fann.c
Original file line number Diff line number Diff line change
Expand Up @@ -908,6 +908,7 @@ FANN_EXTERNAL struct fann* FANN_API fann_copy(struct fann* orig)
copy->bit_fail_limit = orig->bit_fail_limit;
copy->train_error_function = orig->train_error_function;
copy->train_stop_function = orig->train_stop_function;
copy->training_algorithm = orig->training_algorithm;
copy->callback = orig->callback;
copy->cascade_output_change_fraction = orig->cascade_output_change_fraction;
copy->cascade_output_stagnation_epochs = orig->cascade_output_stagnation_epochs;
Expand Down

0 comments on commit 3527be8

Please sign in to comment.