BREAKING: use normalized diff by default

This commit is contained in:
Valentin Boettcher 2022-11-23 21:05:03 +01:00
parent 482fad918e
commit 06b692b20f
No known key found for this signature in database
GPG key ID: E034E12B7AF56ACE
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
[tool.poetry]
description = "Generate continuous time stationary stochastic processes from a given auto correlation function."
name = "stocproc"
version = "1.1.3"
version = "2.0.0"
authors = ["Richard Hartmann <richard.hartmann@tu-dresden.de>"]
license = "BSD (3 clause)"
classifiers = [

View file

@ -4,4 +4,4 @@ config = configparser.ConfigParser()
config.read("stocproc.ini")
USE_NORMALIZED_DIFF = config.getboolean("FFT", "use_normalized_diff", fallback=False)
USE_NORMALIZED_DIFF = config.getboolean("FFT", "use_normalized_diff", fallback=True)