added srand to examples

This commit is contained in:
Lewis Van Winkle
2018-09-05 08:06:25 -05:00
parent 30da4ebf5a
commit 23f2a94216
4 changed files with 14 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <math.h>
#include "genann.h"
@@ -8,6 +9,8 @@ int main(int argc, char *argv[])
printf("GENANN example 2.\n");
printf("Train a small ANN to the XOR function using random search.\n");
srand(time(0));
/* Input and expected out data for the XOR function. */
const double input[4][2] = {{0, 0}, {0, 1}, {1, 0}, {1, 1}};
const double output[4] = {0, 1, 1, 0};
@@ -27,6 +30,7 @@ int main(int argc, char *argv[])
if (count % 1000 == 0) {
/* We're stuck, start over. */
genann_randomize(ann);
last_err = 1000;
}
genann *save = genann_copy(ann);