Compare commits

..

No commits in common. "9c4aeee410c71d064f7567143d4f8d6451ade75a" and "a562281187024258b4390a1252ccd144b30f6e7f" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -1,12 +1,12 @@
# debian stable (currently bullseye) # debian stable (currently bullseye)
cmake_minimum_required(VERSION 3.20) cmake_minimum_required(VERSION 3.18)
project( project(
tug tug
VERSION 0.4 VERSION 0.4
LANGUAGES CXX) LANGUAGES CXX)
find_package(Eigen3 REQUIRED NO_MODULE) find_package(Eigen3 3.4 REQUIRED NO_MODULE)
find_package(OpenMP) find_package(OpenMP)
include(GNUInstallDirs) include(GNUInstallDirs)

View File

@ -25,7 +25,7 @@ grid with constant alpha for all grid cells can be solved reliably.
# Requirements # Requirements
- C++17 compliant compiler - C++17 compliant compiler
- [CMake](https://cmake.org/) >= 3.20 - [CMake](https://cmake.org/) >= 3.18
- [Eigen](https://eigen.tuxfamily.org/) >= 3.4.0 - [Eigen](https://eigen.tuxfamily.org/) >= 3.4.0
# Getting started # Getting started