Skip to content
This repository was archived by the owner on Oct 14, 2025. It is now read-only.

Commit 1a854a7

Browse files
committed
Set version to 0.2.
- updated NEWS. - FIX: bootstrap.sh was only updating ChangeLog when nothing had changed.
1 parent bba0d4c commit 1a854a7

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

NEWS

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
v0.2
2+
====
3+
4+
- enhanced userguide with fully tested python examples
5+
- using double floating point precision by default
6+
- allowed external setting of inter and intra ops thread number for
7+
parallelizaton
8+
- distributable tarball is working (make dist), target distcheck not yet
9+
- added measuring of execution times (init, train, overall)
10+
- FIX: batch_size went missing
11+
- FIX: Dataset was not shuffled properly and split into test/train inconsistent
12+
- added loss manifold sampler
13+
- added Python interface
14+
- added userguide
15+
- added saving and restoring of neural network model to and from file.
16+
- added trajectory analyser for average parameters and diffusion map analysis
17+
based on the contributed code by Zofia Trstanova
18+
- added sampling of average kinetic energy and configurational temperature,
19+
accurate by accumulating in every step (not just "every_nth" step)
20+
- added autotools testsuite
21+
- added SGLD, Geometric Langevin Algorithm 1st and 2nd order sampling
22+
23+
124
v0.1
225
====
326

bootstrap.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ if test ! -e ChangeLog; then
88
else
99
if git log --pretty=format:'%h - %an: %s' > ChangeLog.t \
1010
&& diff ChangeLog.t ChangeLog >/dev/null 2>&1; then
11-
mv -f ChangeLog.t ChangeLog
12-
else
1311
rm -f ChangeLog.t
12+
else
13+
mv -f ChangeLog.t ChangeLog
1414
fi
1515
fi
1616

configure.ac

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

33
AC_PREREQ(2.59)
4-
AC_INIT(DataDrivenSampler, 0.1, [email protected])
4+
AC_INIT(DataDrivenSampler, 0.2, [email protected])
55
AC_CONFIG_AUX_DIR([build-aux])
66
AC_CONFIG_SRCDIR([src/DataDrivenSampler/common.py])
77
AC_CONFIG_MACRO_DIR([m4])

0 commit comments

Comments
 (0)