diff --git a/CMakeLists.txt b/CMakeLists.txt index ae99d7a5..79008e4c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.20 FATAL_ERROR) project( ViennaLS LANGUAGES CXX - VERSION 4.1.2) + VERSION 4.1.3) # -------------------------------------------------------------------------------------------------------- # Library options diff --git a/README.md b/README.md index 87229791..919a23ae 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ We recommend using [CPM.cmake](https://github.com/cpm-cmake/CPM.cmake) to consum * Installation with CPM ```cmake - CPMAddPackage("gh:viennatools/viennals@4.1.2") + CPMAddPackage("gh:viennatools/viennals@4.1.3") ``` * With a local installation diff --git a/include/viennals/lsAdvect.hpp b/include/viennals/lsAdvect.hpp index 2a7a36e2..a9c32d03 100644 --- a/include/viennals/lsAdvect.hpp +++ b/include/viennals/lsAdvect.hpp @@ -77,7 +77,7 @@ template class Advect { unsigned numberOfTimeSteps = 0; bool saveAdvectionVelocities = false; bool updatePointData = true; - bool checkDissipation = false; + bool checkDissipation = true; static constexpr double wrappingLayerEpsilon = 1e-4; hrleVectorType findGlobalAlphas() const { diff --git a/pyproject.toml b/pyproject.toml index ae63c85f..06dc742f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["scikit-build-core", "pybind11"] build-backend = "scikit_build_core.build" [project] -version = "4.1.2" +version = "4.1.3" name = "ViennaLS" readme = "README.md" license = {file = "LICENSE"}