Skip to content

Commit 74068df

Browse files
committed
Merge branch 'v0.57.0-release'
2 parents fe992bc + 1f35d4e commit 74068df

3 files changed

Lines changed: 54 additions & 2 deletions

File tree

CHANGES

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,57 @@ QUESO: Quantification of Uncertainty for Estimation,
33
Simulation, and Optimization.
44
-----------------------------------------------------
55

6+
Version 0.57.0 (Apr 22, 2017)
7+
* Add methods to calculate normalized GP parameters
8+
* GCC-4.4.7 compatibility fixes
9+
* Add options for controlling GPMSA basis SVD
10+
* Add GPMSAFactory::options() accessor
11+
* Add calibrating GPMSA observationalPrecision option
12+
* Update description of Monte Carlo method in manual
13+
* Adding new ip.solve*() methods; use prior cov as default proposal cov matrix
14+
* Implement iteration dependent TK
15+
* Fix serial env failure when trilinos enabled
16+
* Fix NULL pointer comparison for non-pointer object
17+
* Fix queso.dox warnings
18+
* Improve_mpi_comm_docs
19+
* Adding custom tk example
20+
* Update lcov version
21+
* Remove old GPMSA interface
22+
* Add boost implementations of pdfs
23+
* Discourage use of GenericScalarFunction
24+
* Refactor Gaussian likelihoods
25+
* Fix for GCC 5.X builds
26+
* Assert W_i observation error matrices are SPD
27+
* Add new/update quadrature routines (Gauss-Hermite, MonteCarloQuadrature,
28+
TensorProductQuadrature, MultiDQuadrature)
29+
* Increase test coverage
30+
* Fix bug in SequenceOfVectors::erasePositions
31+
* Fix bug in weighted histogram calculations
32+
* Fix bug in ScalarSequence in erasePositions
33+
* Add GPMSA addExperiments + observationalErrorMatrices methods
34+
* Add code coverage output to TravisCI
35+
* Better bounds checking for interpolation datasets
36+
* Add docs for ScopedPtr and SmartPtr
37+
* Update License to 2017
38+
* Add CppUnit as an option (for testing) dependency
39+
* Implement default Hessian-informed log likelihoods
40+
* Add lnValue methods for finite difference fallback (make QUESO call these)
41+
* Make InfiniteDimensionalMCMCSampler use RngBase object
42+
* Force GSL rngs usage for regression tests
43+
* Add RngCXX11 class for C++11 random number support
44+
* Allow ConcatenatedVectorRV without subrealizers
45+
* Add VectorRV::has_realizer() test
46+
* Use nonrecursive make for gsl_tests and t0* directories
47+
* Update StatisticalInverseProblem/MetropolisHastingSG docs
48+
* Reduce header dependencies a little, prefer fwd decl
49+
* Smart pointer upgrades for some internals; better memory management
50+
* Fix up ANN dependency, and information theory calculations
51+
* Fix compiler warnings
52+
* Add info theory method documentation
53+
* Adding documentation links to README
54+
* Rejig build system to make ANN build out of source
55+
* Make old info theory example compile
56+
657
Version 0.56.2 (Feb 2, 2017)
758
* Fixed missing factory symbols when linking statically
859

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ(2.65)
5-
AC_INIT([queso], [0.56.2], [queso-users@googlegroups.com])
5+
AC_INIT([queso], [0.57.0], [queso-users@googlegroups.com])
66
PACKAGE_DESCRIPTION="The parallel C++ statistical library QUESO: Quantification of uncertainty for estimation, simulation and optimization"
77
AC_SUBST([PACKAGE_DESCRIPTION])
88
PACKAGE_URL="https://github.com/libqueso/queso"

test/Makefile.am

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ BimodalExample_gsl_CPPFLAGS = -I$(srcdir)/t04_bimodal $(AM_CPPFLAGS)
246246
test_custom_tk_am_SOURCES =
247247
test_custom_tk_am_SOURCES += custom_tk/adaptive_metropolis_main.C
248248
test_custom_tk_am_SOURCES += custom_tk/adaptive_metropolis.C
249-
test_custom_tk_am_SOURCES += test_custom_tk/adaptive_metropolis.h
249+
test_custom_tk_am_SOURCES += custom_tk/adaptive_metropolis.h
250250
test_custom_tk_am_CPPFLAGS = -I$(srcdir)/custom_tk $(AM_CPPFLAGS)
251251

252252
test_no_initial_point_SOURCES = test_StatisticalInverseProblem/test_no_initial_point.C
@@ -352,6 +352,7 @@ EXTRA_DIST += test_gpmsa/test_gpmsa_samples_diff.sh
352352
EXTRA_DIST += test_gpmsa/test_autoscaled.sh
353353
EXTRA_DIST += test_gpmsa/test_gpmsa_vector_samples.m
354354
EXTRA_DIST += test_gpmsa/test_gpmsa_autoscaled_samples.m
355+
EXTRA_DIST += test_gpmsa/gpmsa_autoscaled_input.txt
355356
EXTRA_DIST += test_StatisticalInverseProblem/both_input.txt
356357
EXTRA_DIST += test_StatisticalInverseProblem/llhdout_input.txt
357358
EXTRA_DIST += test_StatisticalInverseProblem/targetout_input.txt

0 commit comments

Comments
 (0)