pinkwah / iterative_ensemble_smoother

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Iterative Ensemble Smoother

Code style: black docs

A library for the iterative ensemble smoother algorithm. For more information, see the docs.

building

Before building you will have to have a c compiler and python with pip installed. Depending on your environment you will have to instruct the conan package manager about which c compiler to use.

c++ --version # to get information about which c compiler is installed
              # on your system.
pip install conan

# The following sets the compiler settings
# assuming the output of `c++ --version` indicated
# that the installed c compiler was gcc version 11.2
# and writes it to the default profile.
conan profile update "settings.compiler=gcc" default
conan profile update "settings.compiler=11.2" default

To build iterative_ensemble_moother from source:

git clone https://github.com/equinor/iterative_ensemble_moother.git
cd iterative_ensemble_smoother
pip install .

build the documentation

apt install pandoc # Building the doc requires pandoc
pip install .[doc]
spinx-build -c docs/source/ -b html docs/source/ docs/build/html/

About

License:GNU General Public License v3.0


Languages

Language:C++ 58.4%Language:Python 41.6%