easyvvuq.analysis

 1from .basic_stats import BasicStats
 2from .ensemble_boot import EnsembleBoot, EnsembleBootMultiple
 3from .sc_analysis import SCAnalysis
 4from .ssc_analysis import SSCAnalysis
 5from .pce_analysis import PCEAnalysis
 6from .fd_analysis import FDAnalysis
 7from .qmc_analysis import QMCAnalysis
 8from .mcmc import MCMCAnalysis
 9from .gp_analyse import GaussianProcessSurrogate
10
11__copyright__ = """
12
13    Copyright 2018 Robin A. Richardson, David W. Wright
14
15    This file is part of EasyVVUQ
16
17    EasyVVUQ is free software: you can redistribute it and/or modify
18    it under the terms of the Lesser GNU General Public License as published by
19    the Free Software Foundation, either version 3 of the License, or
20    (at your option) any later version.
21
22    EasyVVUQ is distributed in the hope that it will be useful,
23    but WITHOUT ANY WARRANTY; without even the implied warranty of
24    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25    Lesser GNU General Public License for more details.
26
27    You should have received a copy of the Lesser GNU General Public License
28    along with this program.  If not, see <https://www.gnu.org/licenses/>.
29
30"""
31__license__ = "LGPL"