From e0e4bd327b8ae0032da7260a054d03c317470a80 Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Thu, 16 Nov 2017 19:12:14 +0000 Subject: [PATCH] ready for release --- Readme.md | 22 ++++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 7542599..41acdae 100644 --- a/Readme.md +++ b/Readme.md @@ -55,6 +55,28 @@ in the `ci-scripts` directory where `` is where you want LatAnalyze (and For a more customised installation, one first needs to generate the build system by running `./bootstrap.sh` in the root directory. Then the library can be built and installed through the usual GNU mantra `./configure && make && make install`. Use `./configure --help` to obtain a list of possible options for `./configure`. Because Eigen expressions rely a lot on inlining and compiler optimisations it is strongly recommended to set the `CXXFLAGS` variable to `-O3 -march=native -mtune=native`. ## History +#### v3.3 +Additions: +* Sample plot CL utility. +* Infinity as a math constant. +* Option to dump bootstrap sequence while resampling. +* FFT through the GSL. + +Changes: +* GSL integrator accepts infinite bounds. +* `latan-sample-combine` accepts mixes of `DSample` and `DMatSample`. +* More general `latan-sample-element` command. + +#### v3.2.2 +Additions: +* The math interpreter supports `inf` for infinity. + +Changes: +* Vector version of `setUnidimData`. + +Fixes: +* Variance matrix computation fix. + #### v3.2.1 Fix: * Wrong argument number check in `latan-resample` diff --git a/configure.ac b/configure.ac index af23dce..134f26f 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Initialization AC_PREREQ([2.63]) -AC_INIT([LatAnalyze],[3.2.1-dev],[antonin.portelli@me.com],[LatAnalyze]) +AC_INIT([LatAnalyze],[3.3],[antonin.portelli@me.com],[LatAnalyze]) AC_CONFIG_AUX_DIR([.buildutils]) AC_CONFIG_SRCDIR([lib/Global.cpp]) AC_CONFIG_SRCDIR([utils/sample_read.cpp])