Skip to content

Commit

Permalink
Merge branch 'release-v1.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
ycwu1030 committed Dec 1, 2021
2 parents 22ed30d + 3b648ab commit 4e77593
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ if (POLICY CMP0074)
endif ()
PROJECT(EVOEMD CXX)

SET(EVOEMD_VERSION "1.0.0")
SET(EVOEMD_VERSION "1.0.1")

FIND_PACKAGE(GSL REQUIRED)
FIND_PACKAGE(GSL 2.0 REQUIRED) # we need steffen interpolation
SET(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/Modules;${CMAKE_MODULE_PATH}")
FIND_PACKAGE(CUBA REQUIRED)
INCLUDE_DIRECTORIES(${GSL_INCLUDE_DIRS} ${CUBA_INCLUDE_DIRS} include)
Expand Down
2 changes: 1 addition & 1 deletion Models/ToyDM/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.8.12 FATAL_ERROR)
# cmake_policy(SET CMP0074 NEW)
# endif ()
# PROJECT(ToyDM)
# SET(EVOEMD_ROOT "/Users/ycwu/OneDrive/Projects/000.Codings/EvoEMD_install")
# # SET(EVOEMD_ROOT "_PATH_TO_EVOEMD_")
# SET(CMAKE_MODULE_PATH "${EVOEMD_ROOT}/share/cmake/Modules;${CMAKE_MODULE_PATH}")
# FIND_PACKAGE(EVOEMD REQUIRED)
# INCLUDE_DIRECTORIES(${EVOEMD_INCLUDE_DIRS})
Expand Down
2 changes: 1 addition & 1 deletion Models/ToyLeptogenesis/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.8.12 FATAL_ERROR)
# cmake_policy(SET CMP0074 NEW)
# endif ()
# PROJECT(ToyLG)
# SET(EVOEMD_ROOT "/Users/ycwu/OneDrive/Projects/000.Codings/EvoEMD_install")
# # SET(EVOEMD_ROOT "_PATH_TO_EVOEMD_")
# SET(CMAKE_MODULE_PATH "${EVOEMD_ROOT}/share/cmake/Modules;${CMAKE_MODULE_PATH}")
# FIND_PACKAGE(EVOEMD REQUIRED)
# INCLUDE_DIRECTORIES(${EVOEMD_INCLUDE_DIRS})
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ If you are using `EvoEMD`, please cite above paper.

## Dependencies

- [GSL](https://www.gnu.org/software/gsl/)
- [GSL](https://www.gnu.org/software/gsl/) (At least v2.0 is required)
- [Cuba](http://www.feynarts.de/cuba/)
- [spdlog](https://github.com/gabime/spdlog) (Included in `EvoEMD`)

## Installation

Make sure that `GSL` is there which can be installed through many package management systems (`apt-get`, `brew`, etc.). Downloading `Cuba` from the website and compiling it such that one can find `cuba.h` and `libcuba.a` in its directory.
Make sure that `GSL` (later than v2.0) is there which can be installed through many package management systems (`apt-get`, `brew`, etc.). Downloading `Cuba` from the website and compiling it such that one can find `cuba.h` and `libcuba.a` in its directory.

```bash
git clone https://github.com/ycwu1030/EvoEMD.git
Expand Down

0 comments on commit 4e77593

Please sign in to comment.