-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #382 from UT-CHG/v3-dev
Version 3 Soft Release
- Loading branch information
Showing
132 changed files
with
3,872 additions
and
11,310 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
coverage: | ||
status: | ||
patch: | ||
default: | ||
target: 70% | ||
project: | ||
default: | ||
target: 70% | ||
threshold: 5% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,14 +13,16 @@ before_install: | |
- sudo apt-get install gfortran libblas-dev liblapack-dev mpich libmpich-dev | ||
|
||
install: | ||
- pip install matplotlib mpi4py nose codecov Sphinx sphinx_rtd_theme | ||
- python setup.py install | ||
- pip install . | ||
- pip install codecov pytest-cov Sphinx sphinx_rtd_theme | ||
- pip install git+https://github.com/CU-Denver-UQ/LUQ | ||
- pip install mpi4py | ||
|
||
script: | ||
- nosetests --with-coverage --cover-package=bet --cover-erase --cover-html | ||
- mpirun -n 2 nosetests | ||
- pytest --cov=./bet/ ./test/ | ||
- mpirun -n 2 pytest ./test/ | ||
- pip uninstall -y mpi4py | ||
- nosetests | ||
- pytest ./test/ | ||
- sphinx-apidoc -f -o doc bet | ||
- cd doc/ | ||
- make html | ||
|
@@ -32,8 +34,6 @@ notifications: | |
email: | ||
recipients: | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
- [email protected] | ||
on_success: change | ||
on_failure: always | ||
|
@@ -42,6 +42,7 @@ notifications: | |
branches: | ||
only: | ||
- master | ||
- v3-dev | ||
|
||
# Push the results back to codecov | ||
after_success: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
# Copyright (C) 2014-2019 The BET Development Team | ||
# Copyright (C) 2014-2020 The BET Development Team | ||
|
||
r""" | ||
This subpackage provides classes and methods for calulating the | ||
This subpackage provides classes and methods for calculating the | ||
probability measure :math:`P_{\Lambda}`. | ||
* :mod:`~bet.calculateP.calculateP` provides methods for approximating | ||
probability densities | ||
* :mod:`~bet.calculateP.simpleFunP` provides methods for creating simple | ||
function approximations of probability densisties | ||
* :mod:`~bet.calculateP.indicatorFunctions` provides methods for creating | ||
indicator functions for use by various other classes. | ||
* :mod:`~bet.calculateP.calculateP` provides methods for approximating probability densities in the measure-based approach. | ||
* :mod:`~bet.calculateP.simpleFunP` provides methods for creating simple function approximations of probability densities for the measure-based approach. | ||
* :mod:`~bet.calculateP.calculateR` provides methods for density-based approach. | ||
* :mod:`~bet.calculateP.calculateError` provides methods for approximating numerical and sampling errors. | ||
""" | ||
__all__ = ['calculateP', 'simpleFunP', 'indicatorFunctions', | ||
'calculateError'] | ||
__all__ = ['calculateP', 'simpleFunP', 'calculateError', 'calculateR'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.