Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heavywatal/tekka
🐟 Individual-based simulator of pacific bluefin tuna
https://github.com/heavywatal/tekka
Last synced: 7 days ago
JSON representation
🐟 Individual-based simulator of pacific bluefin tuna
- Host: GitHub
- URL: https://github.com/heavywatal/tekka
- Owner: heavywatal
- License: mit
- Created: 2017-10-10T07:08:06.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-11-06T08:03:05.000Z (10 days ago)
- Last Synced: 2024-11-06T09:17:21.958Z (10 days ago)
- Language: C++
- Homepage: https://heavywatal.github.io/tekka/
- Size: 925 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tekka
[![Build status](https://github.com/heavywatal/tekka/workflows/build/badge.svg)](https://github.com/heavywatal/tekka/actions)
Individual-based simulator of pacific bluefin tuna.
[Project page on GitHub](https://github.com/heavywatal/tekka)
## Requirements
- Unix-like environment (macOS, Linux, WSL, MinGW on MSYS2, etc.)
- C++17 compiler (clang++ >= Apple LLVM 12, g++ >= 8)
- [CMake](https://cmake.org/) (>= 3.15.0)The following libraries are optional or automatically installed:
- [clippson](https://github.com/heavywatal/clippson)
- [cxxwtl](https://github.com/heavywatal/cxxwtl)
- [zlib](https://zlib.net)## R interface
You can install and use this program via [R package "tekkamaki"](https://heavywatal.github.io/tekkamaki/).
## Installation of command-line version
The easiest way is to use [Homebrew](https://brew.sh/).
The following command installs tekka and all the dependencies:
```sh
brew install heavywatal/tap/tekka
```Alternatively, you can get the source code from GitHub manually:
```sh
git clone https://github.com/heavywatal/tekka.git
cd tekka/
DESTINATION=${HOME}/local
cmake -S . -B build -DCMAKE_INSTALL_PREFIX=$DESTINATION
cmake --build build -j 2
cmake --install build
PATH=${DESTINATION}/bin:$PATH
```