diff options
| -rw-r--r-- | CHANGELOG.md | 7 | ||||
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | tests/src/test_gensvm_io.c | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f3bcc4..77c2355 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## Version 0.2.1 + +- Add support for prediction after grid search +- Bugfix for reading nonlinear training files +- Command line flag for maximum number of iterations in GenSVM +- Add support for seeding with nonlinear GenSVM + ## Version 0.2.0 - Fix bug in nonlinear GenSVM, it should perform better now. @@ -1,4 +1,4 @@ -VERSION=0.2.0 +VERSION=0.2.1 CC=gcc CFLAGS=-Wall -Wno-unused-result -Wsign-compare -Wstrict-prototypes \ -DVERSION=$(VERSION) -g -O3 diff --git a/tests/src/test_gensvm_io.c b/tests/src/test_gensvm_io.c index b4210bb..fb5916d 100644 --- a/tests/src/test_gensvm_io.c +++ b/tests/src/test_gensvm_io.c @@ -654,7 +654,7 @@ char *test_gensvm_write_model() char buffer[GENSVM_MAX_LINE_LENGTH]; fgets(buffer, GENSVM_MAX_LINE_LENGTH, fid); - mu_assert(strcmp(buffer, "Output file for GenSVM (version 0.2.0)\n") + mu_assert(strcmp(buffer, "Output file for GenSVM (version 0.2.1)\n") == 0, "Line doesn't contain expected content (0).\n"); // skip the time line |
