Skip to content

Commit

Permalink
Set default dissipation check on and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
tobre1 committed Feb 17, 2025
1 parent 85dda58 commit e05273c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected].2")
CPMAddPackage("gh:viennatools/[email protected].3")
```

* With a local installation
Expand Down
2 changes: 1 addition & 1 deletion include/viennals/lsAdvect.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ template <class T, int D> class Advect {
unsigned numberOfTimeSteps = 0;
bool saveAdvectionVelocities = false;
bool updatePointData = true;
bool checkDissipation = false;
bool checkDissipation = true;
static constexpr double wrappingLayerEpsilon = 1e-4;

hrleVectorType<T, 3> findGlobalAlphas() const {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down

0 comments on commit e05273c

Please sign in to comment.