-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This version is based on Valgrind-3.14.0. (fixes gh-19) ### Added - Preliminary filtering before Delta-Debugging: only functions performing floating-point operations are considered in the search for instabilities. - Multiple variants of the Delta-Debugging algorithm: (fixes gh-14, gh-22) - srDDmin: variant of rDDmin, specifically tuned to accomodate for stochastic tests - drDDmin: variant of rDDmin where a preliminary binary search is performed in order to further reduce the search space. - New reduced-precision backend (`--rounding-mode=float`). This back-end emulates the use of single-precision arithmetic for all double-precision variables. (fixes gh-11) ### Changed - Python3 port of `verrou_dd`.
- Loading branch information
François Févotte
committed
Nov 8, 2018
1 parent
b32c7a0
commit d29737d
Showing
3 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Change Log | ||
|
||
|
||
## [UNRELEASED] | ||
## v2.1.0 - 2018-11-09 | ||
|
||
This version is based on Valgrind-3.14.0. (fixes gh-19) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,7 +52,7 @@ index c18ae5f..61c1f92 100644 | |
|
||
# Process this file with autoconf to produce a configure script. | ||
-AC_INIT([Valgrind],[3.14.0],[[email protected]]) | ||
+AC_INIT([Valgrind],[3.14.0+verrou-dev],[[email protected]]) | ||
+AC_INIT([Valgrind],[3.14.0+verrou-2.1.0],[[email protected]]) | ||
AC_CONFIG_SRCDIR(coregrind/m_main.c) | ||
AC_CONFIG_HEADERS([config.h]) | ||
AM_INIT_AUTOMAKE([foreign subdir-objects]) | ||
|
@@ -169,7 +169,7 @@ index 6151c35..4905155 100644 | |
<!-- valgrind release + version stuff --> | ||
<!ENTITY rel-type "Release"> | ||
-<!ENTITY rel-version "3.14.0"> | ||
+<!ENTITY rel-version "3.14.0+verrou-dev"> | ||
+<!ENTITY rel-version "3.14.0+verrou-2.1.0"> | ||
<!ENTITY rel-date "9 October 2018"> | ||
|
||
<!-- where the docs are installed --> |