diff --git a/openturns/master/_downloads/0ef2e737c16c571c8945b202ec11aae3/auto_calibration_jupyter.zip b/openturns/master/_downloads/0ef2e737c16c571c8945b202ec11aae3/auto_calibration_jupyter.zip
index 434b1dfb879..2efda1f660f 100644
Binary files a/openturns/master/_downloads/0ef2e737c16c571c8945b202ec11aae3/auto_calibration_jupyter.zip and b/openturns/master/_downloads/0ef2e737c16c571c8945b202ec11aae3/auto_calibration_jupyter.zip differ
diff --git a/openturns/master/_downloads/32764d685caaf9dcc0d31be3ef384e64/auto_functional_modeling_jupyter.zip b/openturns/master/_downloads/32764d685caaf9dcc0d31be3ef384e64/auto_functional_modeling_jupyter.zip
index 67adcd828b5..8e66bf67516 100644
Binary files a/openturns/master/_downloads/32764d685caaf9dcc0d31be3ef384e64/auto_functional_modeling_jupyter.zip and b/openturns/master/_downloads/32764d685caaf9dcc0d31be3ef384e64/auto_functional_modeling_jupyter.zip differ
diff --git a/openturns/master/_downloads/4df3e0c0f81319718eb3fb7cc1e6e39e/auto_functional_modeling_python.zip b/openturns/master/_downloads/4df3e0c0f81319718eb3fb7cc1e6e39e/auto_functional_modeling_python.zip
index 7cce150bb6f..bd0a5df2f0e 100644
Binary files a/openturns/master/_downloads/4df3e0c0f81319718eb3fb7cc1e6e39e/auto_functional_modeling_python.zip and b/openturns/master/_downloads/4df3e0c0f81319718eb3fb7cc1e6e39e/auto_functional_modeling_python.zip differ
diff --git a/openturns/master/_downloads/58b7cedd7592157d47e84db4a498c83f/auto_data_analysis_jupyter.zip b/openturns/master/_downloads/58b7cedd7592157d47e84db4a498c83f/auto_data_analysis_jupyter.zip
index 5b15375c08a..8fdbe6c7443 100644
Binary files a/openturns/master/_downloads/58b7cedd7592157d47e84db4a498c83f/auto_data_analysis_jupyter.zip and b/openturns/master/_downloads/58b7cedd7592157d47e84db4a498c83f/auto_data_analysis_jupyter.zip differ
diff --git a/openturns/master/_downloads/6e518ec737e8c5eb60654ad7ec3146cf/auto_probabilistic_modeling_jupyter.zip b/openturns/master/_downloads/6e518ec737e8c5eb60654ad7ec3146cf/auto_probabilistic_modeling_jupyter.zip
index 49888b6f392..99653049f2f 100644
Binary files a/openturns/master/_downloads/6e518ec737e8c5eb60654ad7ec3146cf/auto_probabilistic_modeling_jupyter.zip and b/openturns/master/_downloads/6e518ec737e8c5eb60654ad7ec3146cf/auto_probabilistic_modeling_jupyter.zip differ
diff --git a/openturns/master/_downloads/71aec4e01968ab2c8be52211336adbb2/auto_meta_modeling_python.zip b/openturns/master/_downloads/71aec4e01968ab2c8be52211336adbb2/auto_meta_modeling_python.zip
index 8e16e3806c8..15bbdf46b46 100644
Binary files a/openturns/master/_downloads/71aec4e01968ab2c8be52211336adbb2/auto_meta_modeling_python.zip and b/openturns/master/_downloads/71aec4e01968ab2c8be52211336adbb2/auto_meta_modeling_python.zip differ
diff --git a/openturns/master/_downloads/7263f63092b58313bb0867d9aebe4337/auto_numerical_methods_jupyter.zip b/openturns/master/_downloads/7263f63092b58313bb0867d9aebe4337/auto_numerical_methods_jupyter.zip
index 322d453c836..34e06584521 100644
Binary files a/openturns/master/_downloads/7263f63092b58313bb0867d9aebe4337/auto_numerical_methods_jupyter.zip and b/openturns/master/_downloads/7263f63092b58313bb0867d9aebe4337/auto_numerical_methods_jupyter.zip differ
diff --git a/openturns/master/_downloads/80fe3267b6620cf75a9db88be1d114e9/TruncatedOverMesh.py b/openturns/master/_downloads/80fe3267b6620cf75a9db88be1d114e9/TruncatedOverMesh.py
new file mode 100644
index 00000000000..782b2a72174
--- /dev/null
+++ b/openturns/master/_downloads/80fe3267b6620cf75a9db88be1d114e9/TruncatedOverMesh.py
@@ -0,0 +1,47 @@
+import openturns as ot
+import openturns.experimental as otexp
+from openturns.viewer import View
+
+ot.ResourceMap.SetAsUnsignedInteger("Distribution-DefaultIntegrationNodesNumber", 64)
+ot.ResourceMap.SetAsUnsignedInteger("Mesh-LargeSize", 0)
+
+grid = ot.GridLayout(2, 2)
+threshold = 0.2
+inVars = ["x1", "x2"]
+formula = "sin(x1)*sin(x2)"
+f = ot.SymbolicFunction(inVars, [formula])
+levelSet = ot.LevelSet(f, ot.Less(), threshold)
+xMin = [-5.0] * 2
+xMax = [5.0] * 2
+box = ot.Interval(xMin, xMax)
+mesh = ot.LevelSetMesher([51] * 2).build(levelSet, box, False)
+pdf_2d = ot.Graph("Normal distribution over a mesh, PDF", "x1", "x2", True)
+cdf_2d = ot.Graph("Normal distribution over a mesh, CDF", "x1", "x2", True)
+dist = ot.Normal([0] * 2, [2] * 2)
+distribution_2d = otexp.TruncatedOverMesh(dist, mesh)
+mesh_g = mesh.draw()
+mesh_g.setLegends([""])
+mesh_g.setTitle("Mesh of domain D={" + formula + "<=" + str(threshold) + "}")
+mesh_g.setXTitle("x1")
+mesh_g.setYTitle("x2")
+
+iso = f.draw(xMin, xMax)
+iso.setTitle("Normal sample on D")
+dr = iso.getDrawable(0)
+dr.setLevels([threshold])
+iso.setDrawables([dr])
+iso.add(ot.Cloud(distribution_2d.getSample(1500)))
+grid.setGraph(0, 0, mesh_g)
+grid.setGraph(0, 1, iso)
+
+pdf_2d.add(distribution_2d.drawPDF(xMin, xMax))
+pdf_2d.setLegends([""])
+cdf_2d.add(distribution_2d.drawCDF(xMin, xMax, [41] * 2))
+cdf_2d.setLegends([""])
+grid.setGraph(1, 0, pdf_2d)
+grid.setGraph(1, 1, cdf_2d)
+grid.setTitle("TruncatedOverMesh")
+grid.setLegendPosition("topright")
+v = View(grid)
+fig = v.getFigure()
+fig.axes[1].legend(loc="best")
diff --git a/openturns/master/_downloads/88d3828120a999fc8ca5897c5dd2db69/auto_graphs_python.zip b/openturns/master/_downloads/88d3828120a999fc8ca5897c5dd2db69/auto_graphs_python.zip
index 8372048a263..4fb62d33e44 100644
Binary files a/openturns/master/_downloads/88d3828120a999fc8ca5897c5dd2db69/auto_graphs_python.zip and b/openturns/master/_downloads/88d3828120a999fc8ca5897c5dd2db69/auto_graphs_python.zip differ
diff --git a/openturns/master/_downloads/8c708d125230cb531ff996a84d837525/UniformOverMesh.png b/openturns/master/_downloads/8c708d125230cb531ff996a84d837525/UniformOverMesh.png
index 6ec1816df2b..17ab317a1c6 100644
Binary files a/openturns/master/_downloads/8c708d125230cb531ff996a84d837525/UniformOverMesh.png and b/openturns/master/_downloads/8c708d125230cb531ff996a84d837525/UniformOverMesh.png differ
diff --git a/openturns/master/_downloads/96bee7ddd2ef12aa690d50960dfbe8f6/TruncatedOverMesh.png b/openturns/master/_downloads/96bee7ddd2ef12aa690d50960dfbe8f6/TruncatedOverMesh.png
new file mode 100644
index 00000000000..b37931b405d
Binary files /dev/null and b/openturns/master/_downloads/96bee7ddd2ef12aa690d50960dfbe8f6/TruncatedOverMesh.png differ
diff --git a/openturns/master/_downloads/a1d8d0b63d5143d9b72b4959aac7d782/auto_reliability_sensitivity_jupyter.zip b/openturns/master/_downloads/a1d8d0b63d5143d9b72b4959aac7d782/auto_reliability_sensitivity_jupyter.zip
index 2a1216fa018..3c028d98b2c 100644
Binary files a/openturns/master/_downloads/a1d8d0b63d5143d9b72b4959aac7d782/auto_reliability_sensitivity_jupyter.zip and b/openturns/master/_downloads/a1d8d0b63d5143d9b72b4959aac7d782/auto_reliability_sensitivity_jupyter.zip differ
diff --git a/openturns/master/_downloads/a748ffe095675c16859218f143b99a75/auto_reliability_sensitivity_python.zip b/openturns/master/_downloads/a748ffe095675c16859218f143b99a75/auto_reliability_sensitivity_python.zip
index e3f25137892..aad742bc8a6 100644
Binary files a/openturns/master/_downloads/a748ffe095675c16859218f143b99a75/auto_reliability_sensitivity_python.zip and b/openturns/master/_downloads/a748ffe095675c16859218f143b99a75/auto_reliability_sensitivity_python.zip differ
diff --git a/openturns/master/_downloads/abd4774b43e90e70bd9135cf6e27a1a2/auto_meta_modeling_jupyter.zip b/openturns/master/_downloads/abd4774b43e90e70bd9135cf6e27a1a2/auto_meta_modeling_jupyter.zip
index 0c2b0957f86..9779a779c06 100644
Binary files a/openturns/master/_downloads/abd4774b43e90e70bd9135cf6e27a1a2/auto_meta_modeling_jupyter.zip and b/openturns/master/_downloads/abd4774b43e90e70bd9135cf6e27a1a2/auto_meta_modeling_jupyter.zip differ
diff --git a/openturns/master/_downloads/bb1db896ae1deb897c7b02a1ff591375/auto_probabilistic_modeling_python.zip b/openturns/master/_downloads/bb1db896ae1deb897c7b02a1ff591375/auto_probabilistic_modeling_python.zip
index 211123ce910..c09de7d2082 100644
Binary files a/openturns/master/_downloads/bb1db896ae1deb897c7b02a1ff591375/auto_probabilistic_modeling_python.zip and b/openturns/master/_downloads/bb1db896ae1deb897c7b02a1ff591375/auto_probabilistic_modeling_python.zip differ
diff --git a/openturns/master/_downloads/dce365067acf481999ee410b3d643a7e/auto_numerical_methods_python.zip b/openturns/master/_downloads/dce365067acf481999ee410b3d643a7e/auto_numerical_methods_python.zip
index 8089b28a669..87237a2a568 100644
Binary files a/openturns/master/_downloads/dce365067acf481999ee410b3d643a7e/auto_numerical_methods_python.zip and b/openturns/master/_downloads/dce365067acf481999ee410b3d643a7e/auto_numerical_methods_python.zip differ
diff --git a/openturns/master/_downloads/ee2bbb2beb44f9b3de56079b0634b808/auto_calibration_python.zip b/openturns/master/_downloads/ee2bbb2beb44f9b3de56079b0634b808/auto_calibration_python.zip
index 0a145a6b38e..f235d041b9b 100644
Binary files a/openturns/master/_downloads/ee2bbb2beb44f9b3de56079b0634b808/auto_calibration_python.zip and b/openturns/master/_downloads/ee2bbb2beb44f9b3de56079b0634b808/auto_calibration_python.zip differ
diff --git a/openturns/master/_downloads/f99df5de352604d8f438a3c4a3ea0b2c/auto_graphs_jupyter.zip b/openturns/master/_downloads/f99df5de352604d8f438a3c4a3ea0b2c/auto_graphs_jupyter.zip
index 90f6b878be0..e6e26fd5155 100644
Binary files a/openturns/master/_downloads/f99df5de352604d8f438a3c4a3ea0b2c/auto_graphs_jupyter.zip and b/openturns/master/_downloads/f99df5de352604d8f438a3c4a3ea0b2c/auto_graphs_jupyter.zip differ
diff --git a/openturns/master/_downloads/ffa9d199d7551d68b3799354df3b5bf5/auto_data_analysis_python.zip b/openturns/master/_downloads/ffa9d199d7551d68b3799354df3b5bf5/auto_data_analysis_python.zip
index c7ed60b3df0..0f45b7dc19a 100644
Binary files a/openturns/master/_downloads/ffa9d199d7551d68b3799354df3b5bf5/auto_data_analysis_python.zip and b/openturns/master/_downloads/ffa9d199d7551d68b3799354df3b5bf5/auto_data_analysis_python.zip differ
diff --git a/openturns/master/_images/TruncatedOverMesh.png b/openturns/master/_images/TruncatedOverMesh.png
new file mode 100644
index 00000000000..b37931b405d
Binary files /dev/null and b/openturns/master/_images/TruncatedOverMesh.png differ
diff --git a/openturns/master/_images/UniformOverMesh.png b/openturns/master/_images/UniformOverMesh.png
index 6ec1816df2b..17ab317a1c6 100644
Binary files a/openturns/master/_images/UniformOverMesh.png and b/openturns/master/_images/UniformOverMesh.png differ
diff --git a/openturns/master/_images/sphx_glr_plot_ego_009.png b/openturns/master/_images/sphx_glr_plot_ego_009.png
index bf5fb52432a..ce44308e3ae 100644
Binary files a/openturns/master/_images/sphx_glr_plot_ego_009.png and b/openturns/master/_images/sphx_glr_plot_ego_009.png differ
diff --git a/openturns/master/_images/sphx_glr_plot_ifs_001.png b/openturns/master/_images/sphx_glr_plot_ifs_001.png
index 4297b356aab..35e3ada228c 100644
Binary files a/openturns/master/_images/sphx_glr_plot_ifs_001.png and b/openturns/master/_images/sphx_glr_plot_ifs_001.png differ
diff --git a/openturns/master/_images/sphx_glr_plot_ifs_002.png b/openturns/master/_images/sphx_glr_plot_ifs_002.png
index 8102bb62709..d809bf5daa0 100644
Binary files a/openturns/master/_images/sphx_glr_plot_ifs_002.png and b/openturns/master/_images/sphx_glr_plot_ifs_002.png differ
diff --git a/openturns/master/_images/sphx_glr_plot_ifs_003.png b/openturns/master/_images/sphx_glr_plot_ifs_003.png
index 9716c0ed1e7..ac70d89e821 100644
Binary files a/openturns/master/_images/sphx_glr_plot_ifs_003.png and b/openturns/master/_images/sphx_glr_plot_ifs_003.png differ
diff --git a/openturns/master/_images/sphx_glr_plot_ifs_004.png b/openturns/master/_images/sphx_glr_plot_ifs_004.png
index 91065a73576..2204f6977ba 100644
Binary files a/openturns/master/_images/sphx_glr_plot_ifs_004.png and b/openturns/master/_images/sphx_glr_plot_ifs_004.png differ
diff --git a/openturns/master/_images/sphx_glr_plot_ifs_thumb.png b/openturns/master/_images/sphx_glr_plot_ifs_thumb.png
index 3b05173e1e1..a42000d7cfa 100644
Binary files a/openturns/master/_images/sphx_glr_plot_ifs_thumb.png and b/openturns/master/_images/sphx_glr_plot_ifs_thumb.png differ
diff --git a/openturns/master/_images/sphx_glr_plot_optimization_dlib_002.png b/openturns/master/_images/sphx_glr_plot_optimization_dlib_002.png
index ce80ad55587..20562982e90 100644
Binary files a/openturns/master/_images/sphx_glr_plot_optimization_dlib_002.png and b/openturns/master/_images/sphx_glr_plot_optimization_dlib_002.png differ
diff --git a/openturns/master/_images/sphx_glr_plot_optimization_dlib_003.png b/openturns/master/_images/sphx_glr_plot_optimization_dlib_003.png
index 55a3767e4b0..4413dff3d44 100644
Binary files a/openturns/master/_images/sphx_glr_plot_optimization_dlib_003.png and b/openturns/master/_images/sphx_glr_plot_optimization_dlib_003.png differ
diff --git a/openturns/master/_images/sphx_glr_plot_pce_design_001.png b/openturns/master/_images/sphx_glr_plot_pce_design_001.png
index 576459d10b2..63c8fddf398 100644
Binary files a/openturns/master/_images/sphx_glr_plot_pce_design_001.png and b/openturns/master/_images/sphx_glr_plot_pce_design_001.png differ
diff --git a/openturns/master/_images/sphx_glr_plot_pce_design_thumb.png b/openturns/master/_images/sphx_glr_plot_pce_design_thumb.png
index b0ea9c5fcdb..9c94bd11b58 100644
Binary files a/openturns/master/_images/sphx_glr_plot_pce_design_thumb.png and b/openturns/master/_images/sphx_glr_plot_pce_design_thumb.png differ
diff --git a/openturns/master/_sources/auto_calibration/bayesian_calibration/plot_gibbs.rst.txt b/openturns/master/_sources/auto_calibration/bayesian_calibration/plot_gibbs.rst.txt
index 8f90436b744..e21ee9b34d9 100644
--- a/openturns/master/_sources/auto_calibration/bayesian_calibration/plot_gibbs.rst.txt
+++ b/openturns/master/_sources/auto_calibration/bayesian_calibration/plot_gibbs.rst.txt
@@ -283,7 +283,7 @@ Let us plot the posterior density.
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 12.523 seconds)
+ **Total running time of the script:** (0 minutes 11.922 seconds)
.. _sphx_glr_download_auto_calibration_bayesian_calibration_plot_gibbs.py:
diff --git a/openturns/master/_sources/auto_calibration/bayesian_calibration/plot_rwmh_python_distribution.rst.txt b/openturns/master/_sources/auto_calibration/bayesian_calibration/plot_rwmh_python_distribution.rst.txt
index 7c3eae439a1..f010951adea 100644
--- a/openturns/master/_sources/auto_calibration/bayesian_calibration/plot_rwmh_python_distribution.rst.txt
+++ b/openturns/master/_sources/auto_calibration/bayesian_calibration/plot_rwmh_python_distribution.rst.txt
@@ -427,7 +427,7 @@ Plot posterior marginal plots only as prior cannot be drawn meaningfully.
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 5.970 seconds)
+ **Total running time of the script:** (0 minutes 5.532 seconds)
.. _sphx_glr_download_auto_calibration_bayesian_calibration_plot_rwmh_python_distribution.py:
diff --git a/openturns/master/_sources/auto_calibration/bayesian_calibration/sg_execution_times.rst.txt b/openturns/master/_sources/auto_calibration/bayesian_calibration/sg_execution_times.rst.txt
index 1e30d3d88f5..14acc5ce8c3 100644
--- a/openturns/master/_sources/auto_calibration/bayesian_calibration/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_calibration/bayesian_calibration/sg_execution_times.rst.txt
@@ -6,20 +6,20 @@
Computation times
=================
-**00:23.515** total execution time for **auto_calibration_bayesian_calibration** files:
+**00:22.112** total execution time for **auto_calibration_bayesian_calibration** files:
+-----------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_gibbs.py` (``plot_gibbs.py``) | 00:12.523 | 0.0 MB |
+| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_gibbs.py` (``plot_gibbs.py``) | 00:11.922 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_rwmh_python_distribution.py` (``plot_rwmh_python_distribution.py``) | 00:05.970 | 0.0 MB |
+| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_rwmh_python_distribution.py` (``plot_rwmh_python_distribution.py``) | 00:05.532 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_bayesian_calibration_flooding.py` (``plot_bayesian_calibration_flooding.py``) | 00:01.349 | 0.0 MB |
+| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_bayesian_calibration_flooding.py` (``plot_bayesian_calibration_flooding.py``) | 00:01.255 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_bayesian_calibration.py` (``plot_bayesian_calibration.py``) | 00:01.281 | 0.0 MB |
+| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_gibbs_simus.py` (``plot_gibbs_simus.py``) | 00:01.094 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_gibbs_simus.py` (``plot_gibbs_simus.py``) | 00:01.115 | 0.0 MB |
+| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_bayesian_calibration.py` (``plot_bayesian_calibration.py``) | 00:01.088 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_ackley_distribution.py` (``plot_ackley_distribution.py``) | 00:00.992 | 0.0 MB |
+| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_ackley_distribution.py` (``plot_ackley_distribution.py``) | 00:00.948 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_imh_python_distribution.py` (``plot_imh_python_distribution.py``) | 00:00.285 | 0.0 MB |
+| :ref:`sphx_glr_auto_calibration_bayesian_calibration_plot_imh_python_distribution.py` (``plot_imh_python_distribution.py``) | 00:00.274 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_chaboche.rst.txt b/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_chaboche.rst.txt
index 6dda467af49..26b4506891a 100644
--- a/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_chaboche.rst.txt
+++ b/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_chaboche.rst.txt
@@ -1928,7 +1928,7 @@ Reset default settings
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 6.530 seconds)
+ **Total running time of the script:** (0 minutes 6.363 seconds)
.. _sphx_glr_download_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_chaboche.py:
diff --git a/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_deflection_tube.rst.txt b/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_deflection_tube.rst.txt
index 959affdc153..b777f5ee755 100644
--- a/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_deflection_tube.rst.txt
+++ b/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_deflection_tube.rst.txt
@@ -896,7 +896,7 @@ Reset default settings
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 3.439 seconds)
+ **Total running time of the script:** (0 minutes 3.361 seconds)
.. _sphx_glr_download_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_deflection_tube.py:
diff --git a/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_flooding.rst.txt b/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_flooding.rst.txt
index 036bbc4c885..3365fc18ba1 100644
--- a/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_flooding.rst.txt
+++ b/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/plot_calibration_flooding.rst.txt
@@ -1696,7 +1696,7 @@ Reset default settings
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 8.849 seconds)
+ **Total running time of the script:** (0 minutes 8.625 seconds)
.. _sphx_glr_download_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_flooding.py:
diff --git a/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/sg_execution_times.rst.txt b/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/sg_execution_times.rst.txt
index 1b3c97240f6..0d180be2718 100644
--- a/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_calibration/least_squares_and_gaussian_calibration/sg_execution_times.rst.txt
@@ -6,22 +6,22 @@
Computation times
=================
-**00:19.993** total execution time for **auto_calibration_least_squares_and_gaussian_calibration** files:
+**00:19.485** total execution time for **auto_calibration_least_squares_and_gaussian_calibration** files:
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_flooding.py` (``plot_calibration_flooding.py``) | 00:08.849 | 0.0 MB |
+| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_flooding.py` (``plot_calibration_flooding.py``) | 00:08.625 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_chaboche.py` (``plot_calibration_chaboche.py``) | 00:06.530 | 0.0 MB |
+| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_chaboche.py` (``plot_calibration_chaboche.py``) | 00:06.363 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_deflection_tube.py` (``plot_calibration_deflection_tube.py``) | 00:03.439 | 0.0 MB |
+| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_deflection_tube.py` (``plot_calibration_deflection_tube.py``) | 00:03.361 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_logistic.py` (``plot_calibration_logistic.py``) | 00:00.634 | 0.0 MB |
+| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_logistic.py` (``plot_calibration_logistic.py``) | 00:00.621 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_quickstart.py` (``plot_calibration_quickstart.py``) | 00:00.310 | 0.0 MB |
+| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_quickstart.py` (``plot_calibration_quickstart.py``) | 00:00.291 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_calibration_withoutobservedinputs.py` (``plot_calibration_withoutobservedinputs.py``) | 00:00.083 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_generate_chaboche.py` (``plot_generate_chaboche.py``) | 00:00.074 | 0.0 MB |
+| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_generate_chaboche.py` (``plot_generate_chaboche.py``) | 00:00.073 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_generate_flooding.py` (``plot_generate_flooding.py``) | 00:00.073 | 0.0 MB |
+| :ref:`sphx_glr_auto_calibration_least_squares_and_gaussian_calibration_plot_generate_flooding.py` (``plot_generate_flooding.py``) | 00:00.069 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_fremantle.rst.txt b/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_fremantle.rst.txt
index 8a597ffd65b..cced360f009 100644
--- a/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_fremantle.rst.txt
+++ b/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_fremantle.rst.txt
@@ -1061,7 +1061,7 @@ improvements with respect to model tested before.
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 6.180 seconds)
+ **Total running time of the script:** (0 minutes 5.864 seconds)
.. _sphx_glr_download_auto_data_analysis_distribution_fitting_plot_estimate_gev_fremantle.py:
diff --git a/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_pirie.rst.txt b/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_pirie.rst.txt
index fe5d631f3ad..66a5c8d404d 100644
--- a/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_pirie.rst.txt
+++ b/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_pirie.rst.txt
@@ -945,11 +945,6 @@ the threshold :math:`c_{\alpha}` or if the p-value is less than the Type I error
-.. rst-class:: sphx-glr-timing
-
- **Total running time of the script:** (0 minutes 2.235 seconds)
-
-
.. _sphx_glr_download_auto_data_analysis_distribution_fitting_plot_estimate_gev_pirie.py:
.. only:: html
diff --git a/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_racetime.rst.txt b/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_racetime.rst.txt
index 8d13c98b065..5f04f2963a9 100644
--- a/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_racetime.rst.txt
+++ b/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_gev_racetime.rst.txt
@@ -1108,7 +1108,7 @@ quadratic model explains even better a large variation in the data.
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 12.550 seconds)
+ **Total running time of the script:** (0 minutes 10.342 seconds)
.. _sphx_glr_download_auto_data_analysis_distribution_fitting_plot_estimate_gev_racetime.py:
diff --git a/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_multivariate_distribution.rst.txt b/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_multivariate_distribution.rst.txt
index e9bdab92354..6d893150a1f 100644
--- a/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_multivariate_distribution.rst.txt
+++ b/openturns/master/_sources/auto_data_analysis/distribution_fitting/plot_estimate_multivariate_distribution.rst.txt
@@ -403,7 +403,7 @@ We build joint distribution from marginal distributions and dependency structure
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 5.647 seconds)
+ **Total running time of the script:** (0 minutes 6.398 seconds)
.. _sphx_glr_download_auto_data_analysis_distribution_fitting_plot_estimate_multivariate_distribution.py:
diff --git a/openturns/master/_sources/auto_data_analysis/distribution_fitting/sg_execution_times.rst.txt b/openturns/master/_sources/auto_data_analysis/distribution_fitting/sg_execution_times.rst.txt
index 68e4361afbc..a685178357a 100644
--- a/openturns/master/_sources/auto_data_analysis/distribution_fitting/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_data_analysis/distribution_fitting/sg_execution_times.rst.txt
@@ -6,36 +6,36 @@
Computation times
=================
-**00:33.648** total execution time for **auto_data_analysis_distribution_fitting** files:
+**00:31.449** total execution time for **auto_data_analysis_distribution_fitting** files:
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_gev_racetime.py` (``plot_estimate_gev_racetime.py``) | 00:12.550 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_gev_racetime.py` (``plot_estimate_gev_racetime.py``) | 00:10.342 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_gev_fremantle.py` (``plot_estimate_gev_fremantle.py``) | 00:06.180 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_multivariate_distribution.py` (``plot_estimate_multivariate_distribution.py``) | 00:06.398 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_multivariate_distribution.py` (``plot_estimate_multivariate_distribution.py``) | 00:05.647 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_gev_fremantle.py` (``plot_estimate_gev_fremantle.py``) | 00:05.864 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_gev_pirie.py` (``plot_estimate_gev_pirie.py``) | 00:02.235 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_gev_pirie.py` (``plot_estimate_gev_pirie.py``) | 00:01.958 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_conditional_quantile.py` (``plot_estimate_conditional_quantile.py``) | 00:01.758 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_conditional_quantile.py` (``plot_estimate_conditional_quantile.py``) | 00:01.814 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_non_parametric_distribution.py` (``plot_estimate_non_parametric_distribution.py``) | 00:01.120 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_non_parametric_distribution.py` (``plot_estimate_non_parametric_distribution.py``) | 00:01.128 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_gev_venice.py` (``plot_estimate_gev_venice.py``) | 00:00.798 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_gev_venice.py` (``plot_estimate_gev_venice.py``) | 00:00.718 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_asymptotic_estimators_distribution.py` (``plot_asymptotic_estimators_distribution.py``) | 00:00.677 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_asymptotic_estimators_distribution.py` (``plot_asymptotic_estimators_distribution.py``) | 00:00.660 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_smoothing_mixture.py` (``plot_smoothing_mixture.py``) | 00:00.663 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_smoothing_mixture.py` (``plot_smoothing_mixture.py``) | 00:00.608 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_advanced_mle_estimator.py` (``plot_advanced_mle_estimator.py``) | 00:00.631 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_model_singular_multivariate_distribution.py` (``plot_model_singular_multivariate_distribution.py``) | 00:00.588 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_model_singular_multivariate_distribution.py` (``plot_model_singular_multivariate_distribution.py``) | 00:00.567 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_advanced_mle_estimator.py` (``plot_advanced_mle_estimator.py``) | 00:00.586 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_fit_extreme_value_distribution.py` (``plot_fit_extreme_value_distribution.py``) | 00:00.387 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_fit_extreme_value_distribution.py` (``plot_fit_extreme_value_distribution.py``) | 00:00.391 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_normal.py` (``plot_estimate_normal.py``) | 00:00.290 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_estimate_normal.py` (``plot_estimate_normal.py``) | 00:00.252 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_quantilematching_estimator.py` (``plot_quantilematching_estimator.py``) | 00:00.139 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_maximumlikelihood_estimator.py` (``plot_maximumlikelihood_estimator.py``) | 00:00.005 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_distribution_fitting_plot_maximumlikelihood_estimator.py` (``plot_maximumlikelihood_estimator.py``) | 00:00.006 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_data_analysis/estimate_dependency_and_copulas/sg_execution_times.rst.txt b/openturns/master/_sources/auto_data_analysis/estimate_dependency_and_copulas/sg_execution_times.rst.txt
index 0714f47eec5..117a70762a8 100644
--- a/openturns/master/_sources/auto_data_analysis/estimate_dependency_and_copulas/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_data_analysis/estimate_dependency_and_copulas/sg_execution_times.rst.txt
@@ -6,14 +6,14 @@
Computation times
=================
-**00:01.098** total execution time for **auto_data_analysis_estimate_dependency_and_copulas** files:
+**00:00.928** total execution time for **auto_data_analysis_estimate_dependency_and_copulas** files:
+--------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_estimate_dependency_and_copulas_plot_estimate_non_parametric_copula.py` (``plot_estimate_non_parametric_copula.py``) | 00:00.399 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_estimate_dependency_and_copulas_plot_estimate_non_parametric_copula.py` (``plot_estimate_non_parametric_copula.py``) | 00:00.357 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_estimate_dependency_and_copulas_plot_estimate_dependence_wavesurge.py` (``plot_estimate_dependence_wavesurge.py``) | 00:00.293 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_estimate_dependency_and_copulas_plot_estimate_dependence_wavesurge.py` (``plot_estimate_dependence_wavesurge.py``) | 00:00.232 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_estimate_dependency_and_copulas_plot_estimate_dependence_wind.py` (``plot_estimate_dependence_wind.py``) | 00:00.258 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_estimate_dependency_and_copulas_plot_estimate_dependence_wind.py` (``plot_estimate_dependence_wind.py``) | 00:00.216 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_estimate_dependency_and_copulas_plot_estimate_copula.py` (``plot_estimate_copula.py``) | 00:00.148 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_estimate_dependency_and_copulas_plot_estimate_copula.py` (``plot_estimate_copula.py``) | 00:00.123 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_data_analysis/estimate_stochastic_processes/plot_estimate_multivariate_arma.rst.txt b/openturns/master/_sources/auto_data_analysis/estimate_stochastic_processes/plot_estimate_multivariate_arma.rst.txt
index 6526047214d..7a3383292b1 100644
--- a/openturns/master/_sources/auto_data_analysis/estimate_stochastic_processes/plot_estimate_multivariate_arma.rst.txt
+++ b/openturns/master/_sources/auto_data_analysis/estimate_stochastic_processes/plot_estimate_multivariate_arma.rst.txt
@@ -161,7 +161,7 @@ Estimate the process from the previous realization
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 5.167 seconds)
+ **Total running time of the script:** (0 minutes 4.348 seconds)
.. _sphx_glr_download_auto_data_analysis_estimate_stochastic_processes_plot_estimate_multivariate_arma.py:
diff --git a/openturns/master/_sources/auto_data_analysis/estimate_stochastic_processes/sg_execution_times.rst.txt b/openturns/master/_sources/auto_data_analysis/estimate_stochastic_processes/sg_execution_times.rst.txt
index 28f12749f82..2e70b63f131 100644
--- a/openturns/master/_sources/auto_data_analysis/estimate_stochastic_processes/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_data_analysis/estimate_stochastic_processes/sg_execution_times.rst.txt
@@ -6,16 +6,16 @@
Computation times
=================
-**00:08.552** total execution time for **auto_data_analysis_estimate_stochastic_processes** files:
+**00:07.257** total execution time for **auto_data_analysis_estimate_stochastic_processes** files:
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_multivariate_arma.py` (``plot_estimate_multivariate_arma.py``) | 00:05.167 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_multivariate_arma.py` (``plot_estimate_multivariate_arma.py``) | 00:04.348 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_spectral_density_function.py` (``plot_estimate_spectral_density_function.py``) | 00:01.688 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_spectral_density_function.py` (``plot_estimate_spectral_density_function.py``) | 00:01.308 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_arma.py` (``plot_estimate_arma.py``) | 00:00.947 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_arma.py` (``plot_estimate_arma.py``) | 00:00.821 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_stationary_covariance_model.py` (``plot_estimate_stationary_covariance_model.py``) | 00:00.464 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_stationary_covariance_model.py` (``plot_estimate_stationary_covariance_model.py``) | 00:00.520 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_non_stationary_covariance_model.py` (``plot_estimate_non_stationary_covariance_model.py``) | 00:00.286 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_estimate_stochastic_processes_plot_estimate_non_stationary_covariance_model.py` (``plot_estimate_non_stationary_covariance_model.py``) | 00:00.261 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_data_analysis/graphics/plot_sensitivity_par_coo_ishigami.rst.txt b/openturns/master/_sources/auto_data_analysis/graphics/plot_sensitivity_par_coo_ishigami.rst.txt
index 383fc720348..43f1fa9b4a6 100644
--- a/openturns/master/_sources/auto_data_analysis/graphics/plot_sensitivity_par_coo_ishigami.rst.txt
+++ b/openturns/master/_sources/auto_data_analysis/graphics/plot_sensitivity_par_coo_ishigami.rst.txt
@@ -381,7 +381,7 @@ Display figures
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 3.437 seconds)
+ **Total running time of the script:** (0 minutes 3.159 seconds)
.. _sphx_glr_download_auto_data_analysis_graphics_plot_sensitivity_par_coo_ishigami.py:
diff --git a/openturns/master/_sources/auto_data_analysis/graphics/sg_execution_times.rst.txt b/openturns/master/_sources/auto_data_analysis/graphics/sg_execution_times.rst.txt
index 7be73e690fc..a4ee2f631b7 100644
--- a/openturns/master/_sources/auto_data_analysis/graphics/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_data_analysis/graphics/sg_execution_times.rst.txt
@@ -6,12 +6,12 @@
Computation times
=================
-**00:03.920** total execution time for **auto_data_analysis_graphics** files:
+**00:03.639** total execution time for **auto_data_analysis_graphics** files:
+-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_graphics_plot_sensitivity_par_coo_ishigami.py` (``plot_sensitivity_par_coo_ishigami.py``) | 00:03.437 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_graphics_plot_sensitivity_par_coo_ishigami.py` (``plot_sensitivity_par_coo_ishigami.py``) | 00:03.159 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_graphics_plot_visualize_clouds.py` (``plot_visualize_clouds.py``) | 00:00.280 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_graphics_plot_visualize_clouds.py` (``plot_visualize_clouds.py``) | 00:00.268 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_graphics_plot_visualize_pairs.py` (``plot_visualize_pairs.py``) | 00:00.203 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_graphics_plot_visualize_pairs.py` (``plot_visualize_pairs.py``) | 00:00.212 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_data_analysis/manage_data_and_samples/sg_execution_times.rst.txt b/openturns/master/_sources/auto_data_analysis/manage_data_and_samples/sg_execution_times.rst.txt
index fe559a1a79f..dfe59cce3a7 100644
--- a/openturns/master/_sources/auto_data_analysis/manage_data_and_samples/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_data_analysis/manage_data_and_samples/sg_execution_times.rst.txt
@@ -6,26 +6,26 @@
Computation times
=================
-**00:01.062** total execution time for **auto_data_analysis_manage_data_and_samples** files:
+**00:00.934** total execution time for **auto_data_analysis_manage_data_and_samples** files:
+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_sample_correlation.py` (``plot_sample_correlation.py``) | 00:00.499 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_sample_correlation.py` (``plot_sample_correlation.py``) | 00:00.429 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_sample_pandas.py` (``plot_sample_pandas.py``) | 00:00.228 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_sample_pandas.py` (``plot_sample_pandas.py``) | 00:00.215 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_linear_regression.py` (``plot_linear_regression.py``) | 00:00.172 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_linear_regression.py` (``plot_linear_regression.py``) | 00:00.157 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_quantile_estimation_wilks.py` (``plot_quantile_estimation_wilks.py``) | 00:00.132 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_quantile_estimation_wilks.py` (``plot_quantile_estimation_wilks.py``) | 00:00.104 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_quick_start_point_and_sample.py` (``plot_quick_start_point_and_sample.py``) | 00:00.009 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_quick_start_point_and_sample.py` (``plot_quick_start_point_and_sample.py``) | 00:00.010 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_sample_manipulation.py` (``plot_sample_manipulation.py``) | 00:00.007 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_sample_manipulation.py` (``plot_sample_manipulation.py``) | 00:00.005 | 0.0 MB |
++--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
+| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_estimate_moments.py` (``plot_estimate_moments.py``) | 00:00.005 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_sort_sample.py` (``plot_sort_sample.py``) | 00:00.005 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_estimate_moments.py` (``plot_estimate_moments.py``) | 00:00.005 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_import_export_sample_csv.py` (``plot_import_export_sample_csv.py``) | 00:00.003 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_randomize_sample_lines.py` (``plot_randomize_sample_lines.py``) | 00:00.002 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_manage_data_and_samples_plot_import_export_sample_csv.py` (``plot_import_export_sample_csv.py``) | 00:00.002 | 0.0 MB |
-+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_data_analysis/sample_analysis/sg_execution_times.rst.txt b/openturns/master/_sources/auto_data_analysis/sample_analysis/sg_execution_times.rst.txt
index 4bb149eaa7e..11b1fa3acf7 100644
--- a/openturns/master/_sources/auto_data_analysis/sample_analysis/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_data_analysis/sample_analysis/sg_execution_times.rst.txt
@@ -6,16 +6,16 @@
Computation times
=================
-**00:01.679** total execution time for **auto_data_analysis_sample_analysis** files:
+**00:01.623** total execution time for **auto_data_analysis_sample_analysis** files:
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_draw_survival.py` (``plot_draw_survival.py``) | 00:01.192 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_draw_survival.py` (``plot_draw_survival.py``) | 00:01.135 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_src_confidence.py` (``plot_src_confidence.py``) | 00:00.165 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_src_confidence.py` (``plot_src_confidence.py``) | 00:00.178 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_visualize_empirical_cdf.py` (``plot_visualize_empirical_cdf.py``) | 00:00.128 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_visualize_empirical_cdf.py` (``plot_visualize_empirical_cdf.py``) | 00:00.129 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_compare_unconditional_conditional_histograms.py` (``plot_compare_unconditional_conditional_histograms.py``) | 00:00.125 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_compare_unconditional_conditional_histograms.py` (``plot_compare_unconditional_conditional_histograms.py``) | 00:00.119 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_visualize_histogram.py` (``plot_visualize_histogram.py``) | 00:00.069 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_sample_analysis_plot_visualize_histogram.py` (``plot_visualize_histogram.py``) | 00:00.063 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_data_analysis/statistical_tests/sg_execution_times.rst.txt b/openturns/master/_sources/auto_data_analysis/statistical_tests/sg_execution_times.rst.txt
index 57ec40af593..1b3ff93ec49 100644
--- a/openturns/master/_sources/auto_data_analysis/statistical_tests/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_data_analysis/statistical_tests/sg_execution_times.rst.txt
@@ -6,28 +6,28 @@
Computation times
=================
-**00:03.176** total execution time for **auto_data_analysis_statistical_tests** files:
+**00:02.663** total execution time for **auto_data_analysis_statistical_tests** files:
+------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_kolmogorov_distribution.py` (``plot_kolmogorov_distribution.py``) | 00:01.619 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_kolmogorov_distribution.py` (``plot_kolmogorov_distribution.py``) | 00:01.357 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_fitted_distribution_ranking.py` (``plot_fitted_distribution_ranking.py``) | 00:00.463 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_fitted_distribution_ranking.py` (``plot_fitted_distribution_ranking.py``) | 00:00.396 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_test_copula.py` (``plot_test_copula.py``) | 00:00.326 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_test_copula.py` (``plot_test_copula.py``) | 00:00.280 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_smirnov_test.py` (``plot_smirnov_test.py``) | 00:00.172 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_smirnov_test.py` (``plot_smirnov_test.py``) | 00:00.148 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_test_normality.py` (``plot_test_normality.py``) | 00:00.154 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_test_normality.py` (``plot_test_normality.py``) | 00:00.139 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_qqplot_graph.py` (``plot_qqplot_graph.py``) | 00:00.152 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_qqplot_graph.py` (``plot_qqplot_graph.py``) | 00:00.138 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_kolmogorov_pvalue.py` (``plot_kolmogorov_pvalue.py``) | 00:00.148 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_kolmogorov_pvalue.py` (``plot_kolmogorov_pvalue.py``) | 00:00.098 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_kolmogorov_statistics.py` (``plot_kolmogorov_statistics.py``) | 00:00.096 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_kolmogorov_statistics.py` (``plot_kolmogorov_statistics.py``) | 00:00.071 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_kolmogorov_test.py` (``plot_kolmogorov_test.py``) | 00:00.039 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_kolmogorov_test.py` (``plot_kolmogorov_test.py``) | 00:00.030 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_test_independence.py` (``plot_test_independence.py``) | 00:00.005 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_chi2_fitting_test.py` (``plot_chi2_fitting_test.py``) | 00:00.002 | 0.0 MB |
+| :ref:`sphx_glr_auto_data_analysis_statistical_tests_plot_chi2_fitting_test.py` (``plot_chi2_fitting_test.py``) | 00:00.001 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_functional_modeling/field_functions/sg_execution_times.rst.txt b/openturns/master/_sources/auto_functional_modeling/field_functions/sg_execution_times.rst.txt
index dbbea17b0c1..dfbc0e026bf 100644
--- a/openturns/master/_sources/auto_functional_modeling/field_functions/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_functional_modeling/field_functions/sg_execution_times.rst.txt
@@ -6,10 +6,10 @@
Computation times
=================
-**00:00.695** total execution time for **auto_functional_modeling_field_functions** files:
+**00:00.694** total execution time for **auto_functional_modeling_field_functions** files:
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_functional_modeling_field_functions_plot_function_manipulation.py` (``plot_function_manipulation.py``) | 00:00.338 | 0.0 MB |
+| :ref:`sphx_glr_auto_functional_modeling_field_functions_plot_function_manipulation.py` (``plot_function_manipulation.py``) | 00:00.334 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_functional_modeling_field_functions_plot_logistic_growth_model.py` (``plot_logistic_growth_model.py``) | 00:00.198 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_functional_modeling/link_to_an_external_code/sg_execution_times.rst.txt b/openturns/master/_sources/auto_functional_modeling/link_to_an_external_code/sg_execution_times.rst.txt
index e7e3494b38c..398999a091a 100644
--- a/openturns/master/_sources/auto_functional_modeling/link_to_an_external_code/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_functional_modeling/link_to_an_external_code/sg_execution_times.rst.txt
@@ -6,8 +6,8 @@
Computation times
=================
-**00:00.024** total execution time for **auto_functional_modeling_link_to_an_external_code** files:
+**00:00.023** total execution time for **auto_functional_modeling_link_to_an_external_code** files:
+-------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_functional_modeling_link_to_an_external_code_plot_link_computer_code_coupling_tools.py` (``plot_link_computer_code_coupling_tools.py``) | 00:00.024 | 0.0 MB |
+| :ref:`sphx_glr_auto_functional_modeling_link_to_an_external_code_plot_link_computer_code_coupling_tools.py` (``plot_link_computer_code_coupling_tools.py``) | 00:00.023 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_functional_modeling/univariate_functions/sg_execution_times.rst.txt b/openturns/master/_sources/auto_functional_modeling/univariate_functions/sg_execution_times.rst.txt
index e20ee0e621e..0bb00498f8b 100644
--- a/openturns/master/_sources/auto_functional_modeling/univariate_functions/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_functional_modeling/univariate_functions/sg_execution_times.rst.txt
@@ -6,8 +6,8 @@
Computation times
=================
-**00:00.235** total execution time for **auto_functional_modeling_univariate_functions** files:
+**00:00.231** total execution time for **auto_functional_modeling_univariate_functions** files:
+---------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_functional_modeling_univariate_functions_plot_createUnivariateFunction.py` (``plot_createUnivariateFunction.py``) | 00:00.235 | 0.0 MB |
+| :ref:`sphx_glr_auto_functional_modeling_univariate_functions_plot_createUnivariateFunction.py` (``plot_createUnivariateFunction.py``) | 00:00.231 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_functional_modeling/vectorial_functions/sg_execution_times.rst.txt b/openturns/master/_sources/auto_functional_modeling/vectorial_functions/sg_execution_times.rst.txt
index 44b73c03bc9..81aa7df4b66 100644
--- a/openturns/master/_sources/auto_functional_modeling/vectorial_functions/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_functional_modeling/vectorial_functions/sg_execution_times.rst.txt
@@ -6,12 +6,12 @@
Computation times
=================
-**00:00.249** total execution time for **auto_functional_modeling_vectorial_functions** files:
+**00:00.242** total execution time for **auto_functional_modeling_vectorial_functions** files:
+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_symbolic_function.py` (``plot_symbolic_function.py``) | 00:00.115 | 0.0 MB |
+| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_symbolic_function.py` (``plot_symbolic_function.py``) | 00:00.111 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_quadratic_function.py` (``plot_quadratic_function.py``) | 00:00.066 | 0.0 MB |
+| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_quadratic_function.py` (``plot_quadratic_function.py``) | 00:00.063 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_quick_start_functions.py` (``plot_quick_start_functions.py``) | 00:00.049 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
@@ -25,9 +25,9 @@ Computation times
+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_linear_combination_function.py` (``plot_linear_combination_function.py``) | 00:00.002 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_functions_outputDim.py` (``plot_functions_outputDim.py``) | 00:00.002 | 0.0 MB |
-+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_composed_function.py` (``plot_composed_function.py``) | 00:00.002 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
+| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_functions_outputDim.py` (``plot_functions_outputDim.py``) | 00:00.002 | 0.0 MB |
++--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_functional_modeling_vectorial_functions_plot_parametric_function.py` (``plot_parametric_function.py``) | 00:00.001 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_graphs/sg_execution_times.rst.txt b/openturns/master/_sources/auto_graphs/sg_execution_times.rst.txt
index 619de815579..52c30ff88c3 100644
--- a/openturns/master/_sources/auto_graphs/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_graphs/sg_execution_times.rst.txt
@@ -6,12 +6,12 @@
Computation times
=================
-**00:01.815** total execution time for **auto_graphs** files:
+**00:01.838** total execution time for **auto_graphs** files:
+-------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_graphs_plot_graphs_basics.py` (``plot_graphs_basics.py``) | 00:01.039 | 0.0 MB |
+| :ref:`sphx_glr_auto_graphs_plot_graphs_basics.py` (``plot_graphs_basics.py``) | 00:01.054 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_graphs_plot_graphs_loglikelihood_contour.py` (``plot_graphs_loglikelihood_contour.py``) | 00:00.626 | 0.0 MB |
+| :ref:`sphx_glr_auto_graphs_plot_graphs_loglikelihood_contour.py` (``plot_graphs_loglikelihood_contour.py``) | 00:00.637 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_graphs_plot_graphs_fill_area.py` (``plot_graphs_fill_area.py``) | 00:00.151 | 0.0 MB |
+| :ref:`sphx_glr_auto_graphs_plot_graphs_fill_area.py` (``plot_graphs_fill_area.py``) | 00:00.147 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_meta_modeling/fields_metamodels/plot_fieldfunction_metamodel.rst.txt b/openturns/master/_sources/auto_meta_modeling/fields_metamodels/plot_fieldfunction_metamodel.rst.txt
index 9d28cf00297..8bed5221ea3 100644
--- a/openturns/master/_sources/auto_meta_modeling/fields_metamodels/plot_fieldfunction_metamodel.rst.txt
+++ b/openturns/master/_sources/auto_meta_modeling/fields_metamodels/plot_fieldfunction_metamodel.rst.txt
@@ -498,7 +498,7 @@ Reset default settings
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 18.485 seconds)
+ **Total running time of the script:** (0 minutes 18.461 seconds)
.. _sphx_glr_download_auto_meta_modeling_fields_metamodels_plot_fieldfunction_metamodel.py:
diff --git a/openturns/master/_sources/auto_meta_modeling/fields_metamodels/sg_execution_times.rst.txt b/openturns/master/_sources/auto_meta_modeling/fields_metamodels/sg_execution_times.rst.txt
index 49ce961405f..e8b92cedf92 100644
--- a/openturns/master/_sources/auto_meta_modeling/fields_metamodels/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_meta_modeling/fields_metamodels/sg_execution_times.rst.txt
@@ -6,12 +6,12 @@
Computation times
=================
-**00:20.934** total execution time for **auto_meta_modeling_fields_metamodels** files:
+**00:20.676** total execution time for **auto_meta_modeling_fields_metamodels** files:
+------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_fields_metamodels_plot_fieldfunction_metamodel.py` (``plot_fieldfunction_metamodel.py``) | 00:18.485 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_fields_metamodels_plot_fieldfunction_metamodel.py` (``plot_fieldfunction_metamodel.py``) | 00:18.461 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_fields_metamodels_plot_viscous_fall_metamodel.py` (``plot_viscous_fall_metamodel.py``) | 00:01.981 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_fields_metamodels_plot_viscous_fall_metamodel.py` (``plot_viscous_fall_metamodel.py``) | 00:01.764 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_fields_metamodels_plot_karhunenloeve_validation.py` (``plot_karhunenloeve_validation.py``) | 00:00.468 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_fields_metamodels_plot_karhunenloeve_validation.py` (``plot_karhunenloeve_validation.py``) | 00:00.451 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_meta_modeling/general_purpose_metamodels/sg_execution_times.rst.txt b/openturns/master/_sources/auto_meta_modeling/general_purpose_metamodels/sg_execution_times.rst.txt
index d4b988aa403..a3e1aa87dc1 100644
--- a/openturns/master/_sources/auto_meta_modeling/general_purpose_metamodels/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_meta_modeling/general_purpose_metamodels/sg_execution_times.rst.txt
@@ -6,20 +6,20 @@
Computation times
=================
-**00:02.314** total execution time for **auto_meta_modeling_general_purpose_metamodels** files:
+**00:02.303** total execution time for **auto_meta_modeling_general_purpose_metamodels** files:
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_overfitting_model_selection.py` (``plot_overfitting_model_selection.py``) | 00:00.774 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_overfitting_model_selection.py` (``plot_overfitting_model_selection.py``) | 00:00.782 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_linear_model.py` (``plot_linear_model.py``) | 00:00.706 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_linear_model.py` (``plot_linear_model.py``) | 00:00.692 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_stepwise.py` (``plot_stepwise.py``) | 00:00.348 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_expert_mixture.py` (``plot_expert_mixture.py``) | 00:00.179 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_expert_mixture.py` (``plot_expert_mixture.py``) | 00:00.180 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_taylor_approximation.py` (``plot_taylor_approximation.py``) | 00:00.144 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_general_linear_model.py` (``plot_general_linear_model.py``) | 00:00.097 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_general_linear_model.py` (``plot_general_linear_model.py``) | 00:00.090 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_create_linear_least_squares_model.py` (``plot_create_linear_least_squares_model.py``) | 00:00.068 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_general_purpose_metamodels_plot_create_linear_least_squares_model.py` (``plot_create_linear_least_squares_model.py``) | 00:00.067 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_meta_modeling/kriging_metamodel/plot_kriging_categorical.rst.txt b/openturns/master/_sources/auto_meta_modeling/kriging_metamodel/plot_kriging_categorical.rst.txt
index 2848ae59cba..7f533274f2f 100644
--- a/openturns/master/_sources/auto_meta_modeling/kriging_metamodel/plot_kriging_categorical.rst.txt
+++ b/openturns/master/_sources/auto_meta_modeling/kriging_metamodel/plot_kriging_categorical.rst.txt
@@ -554,7 +554,7 @@ than relying on multiple purely continuous Gaussian processes.
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 11.702 seconds)
+ **Total running time of the script:** (0 minutes 10.323 seconds)
.. _sphx_glr_download_auto_meta_modeling_kriging_metamodel_plot_kriging_categorical.py:
diff --git a/openturns/master/_sources/auto_meta_modeling/kriging_metamodel/sg_execution_times.rst.txt b/openturns/master/_sources/auto_meta_modeling/kriging_metamodel/sg_execution_times.rst.txt
index edb607b6806..d3af455ac48 100644
--- a/openturns/master/_sources/auto_meta_modeling/kriging_metamodel/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_meta_modeling/kriging_metamodel/sg_execution_times.rst.txt
@@ -6,42 +6,42 @@
Computation times
=================
-**00:18.236** total execution time for **auto_meta_modeling_kriging_metamodel** files:
+**00:15.940** total execution time for **auto_meta_modeling_kriging_metamodel** files:
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_categorical.py` (``plot_kriging_categorical.py``) | 00:11.702 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_categorical.py` (``plot_kriging_categorical.py``) | 00:10.323 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_draw_covariance_models.py` (``plot_draw_covariance_models.py``) | 00:01.478 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_draw_covariance_models.py` (``plot_draw_covariance_models.py``) | 00:01.206 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_advanced.py` (``plot_kriging_advanced.py``) | 00:00.835 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_advanced.py` (``plot_kriging_advanced.py``) | 00:00.742 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_sequential.py` (``plot_kriging_sequential.py``) | 00:00.677 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_sequential.py` (``plot_kriging_sequential.py``) | 00:00.582 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_chose_trend.py` (``plot_kriging_chose_trend.py``) | 00:00.490 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_chose_trend.py` (``plot_kriging_chose_trend.py``) | 00:00.439 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_branin_function.py` (``plot_kriging_branin_function.py``) | 00:00.446 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_branin_function.py` (``plot_kriging_branin_function.py``) | 00:00.380 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_propagate_kriging_ishigami.py` (``plot_propagate_kriging_ishigami.py``) | 00:00.410 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_propagate_kriging_ishigami.py` (``plot_propagate_kriging_ishigami.py``) | 00:00.352 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_1d.py` (``plot_kriging_1d.py``) | 00:00.364 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_1d.py` (``plot_kriging_1d.py``) | 00:00.306 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_multioutput_firesatellite.py` (``plot_kriging_multioutput_firesatellite.py``) | 00:00.340 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_multioutput_firesatellite.py` (``plot_kriging_multioutput_firesatellite.py``) | 00:00.268 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_isotropic.py` (``plot_kriging_isotropic.py``) | 00:00.281 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_isotropic.py` (``plot_kriging_isotropic.py``) | 00:00.259 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_simulate.py` (``plot_kriging_simulate.py``) | 00:00.229 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_simulate.py` (``plot_kriging_simulate.py``) | 00:00.223 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_hyperparameters_optimization.py` (``plot_kriging_hyperparameters_optimization.py``) | 00:00.217 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_hyperparameters_optimization.py` (``plot_kriging_hyperparameters_optimization.py``) | 00:00.192 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_cantilever_beam.py` (``plot_kriging_cantilever_beam.py``) | 00:00.217 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_cantilever_beam_hmat.py` (``plot_kriging_cantilever_beam_hmat.py``) | 00:00.180 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_cantilever_beam_hmat.py` (``plot_kriging_cantilever_beam_hmat.py``) | 00:00.201 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_cantilever_beam.py` (``plot_kriging_cantilever_beam.py``) | 00:00.175 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_beam_trend.py` (``plot_kriging_beam_trend.py``) | 00:00.179 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_beam_trend.py` (``plot_kriging_beam_trend.py``) | 00:00.159 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_likelihood.py` (``plot_kriging_likelihood.py``) | 00:00.092 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_likelihood.py` (``plot_kriging_likelihood.py``) | 00:00.078 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging.py` (``plot_kriging.py``) | 00:00.069 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging.py` (``plot_kriging.py``) | 00:00.068 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_beam_arbitrary_trend.py` (``plot_kriging_beam_arbitrary_trend.py``) | 00:00.010 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_kriging_metamodel_plot_kriging_beam_arbitrary_trend.py` (``plot_kriging_beam_arbitrary_trend.py``) | 00:00.008 | 0.0 MB |
+------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_beam_sensitivity_degree.rst.txt b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_beam_sensitivity_degree.rst.txt
index b6506479866..162564e59af 100644
--- a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_beam_sensitivity_degree.rst.txt
+++ b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_beam_sensitivity_degree.rst.txt
@@ -576,7 +576,7 @@ References
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 6.997 seconds)
+ **Total running time of the script:** (0 minutes 6.406 seconds)
.. _sphx_glr_download_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_beam_sensitivity_degree.py:
diff --git a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_build_distribution.rst.txt b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_build_distribution.rst.txt
index 8f567fcba6f..5e1ed7af18c 100644
--- a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_build_distribution.rst.txt
+++ b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_build_distribution.rst.txt
@@ -180,11 +180,6 @@ Reset default settings
-.. rst-class:: sphx-glr-timing
-
- **Total running time of the script:** (0 minutes 2.066 seconds)
-
-
.. _sphx_glr_download_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_build_distribution.py:
.. only:: html
diff --git a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_cleaning_strategy.rst.txt b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_cleaning_strategy.rst.txt
index 7f3850382f3..a82b7180b34 100644
--- a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_cleaning_strategy.rst.txt
+++ b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_cleaning_strategy.rst.txt
@@ -1043,7 +1043,7 @@ produce the best Q2 score.
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 2.173 seconds)
+ **Total running time of the script:** (0 minutes 2.143 seconds)
.. _sphx_glr_download_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_cleaning_strategy.py:
diff --git a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_cv.rst.txt b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_cv.rst.txt
index 635d45061ea..15efe12f8d6 100644
--- a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_cv.rst.txt
+++ b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_cv.rst.txt
@@ -672,7 +672,7 @@ When estimating the :math:`Q^2` score with the best parameters, the test set is
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 11.849 seconds)
+ **Total running time of the script:** (0 minutes 10.630 seconds)
.. _sphx_glr_download_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_cv.py:
diff --git a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_sobol_confidence.rst.txt b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_sobol_confidence.rst.txt
index 14bd4bc6366..c3b112ce33d 100644
--- a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_sobol_confidence.rst.txt
+++ b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_chaos_sobol_confidence.rst.txt
@@ -619,7 +619,7 @@ Hence, there is no evidence that the Sobol' indices of E are zero.
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 2.844 seconds)
+ **Total running time of the script:** (0 minutes 2.974 seconds)
.. _sphx_glr_download_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_sobol_confidence.py:
diff --git a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_functional_chaos.rst.txt b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_functional_chaos.rst.txt
index 87413b41742..219a97cb266 100644
--- a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_functional_chaos.rst.txt
+++ b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/plot_functional_chaos.rst.txt
@@ -489,7 +489,7 @@ Reset default settings
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 7.716 seconds)
+ **Total running time of the script:** (0 minutes 7.277 seconds)
.. _sphx_glr_download_auto_meta_modeling_polynomial_chaos_metamodel_plot_functional_chaos.py:
diff --git a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/sg_execution_times.rst.txt b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/sg_execution_times.rst.txt
index 351f68e3617..196f6557bae 100644
--- a/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_meta_modeling/polynomial_chaos_metamodel/sg_execution_times.rst.txt
@@ -6,38 +6,38 @@
Computation times
=================
-**00:36.048** total execution time for **auto_meta_modeling_polynomial_chaos_metamodel** files:
+**00:33.626** total execution time for **auto_meta_modeling_polynomial_chaos_metamodel** files:
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_cv.py` (``plot_chaos_cv.py``) | 00:11.849 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_cv.py` (``plot_chaos_cv.py``) | 00:10.630 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_functional_chaos.py` (``plot_functional_chaos.py``) | 00:07.716 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_functional_chaos.py` (``plot_functional_chaos.py``) | 00:07.277 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_beam_sensitivity_degree.py` (``plot_chaos_beam_sensitivity_degree.py``) | 00:06.997 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_beam_sensitivity_degree.py` (``plot_chaos_beam_sensitivity_degree.py``) | 00:06.406 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_sobol_confidence.py` (``plot_chaos_sobol_confidence.py``) | 00:02.844 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_sobol_confidence.py` (``plot_chaos_sobol_confidence.py``) | 00:02.974 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_cleaning_strategy.py` (``plot_chaos_cleaning_strategy.py``) | 00:02.173 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_cleaning_strategy.py` (``plot_chaos_cleaning_strategy.py``) | 00:02.143 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_build_distribution.py` (``plot_chaos_build_distribution.py``) | 00:02.066 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_build_distribution.py` (``plot_chaos_build_distribution.py``) | 00:01.922 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_enumeratefunction.py` (``plot_enumeratefunction.py``) | 00:01.293 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_enumeratefunction.py` (``plot_enumeratefunction.py``) | 00:01.211 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_ishigami.py` (``plot_chaos_ishigami.py``) | 00:00.363 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_ishigami.py` (``plot_chaos_ishigami.py``) | 00:00.352 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_cantilever_beam_integration.py` (``plot_chaos_cantilever_beam_integration.py``) | 00:00.284 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_cantilever_beam_integration.py` (``plot_chaos_cantilever_beam_integration.py``) | 00:00.271 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_functional_chaos_graphs.py` (``plot_functional_chaos_graphs.py``) | 00:00.246 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_functional_chaos_graphs.py` (``plot_functional_chaos_graphs.py``) | 00:00.249 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_draw_validation.py` (``plot_chaos_draw_validation.py``) | 00:00.133 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_draw_validation.py` (``plot_chaos_draw_validation.py``) | 00:00.118 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_functional_chaos_exploitation.py` (``plot_functional_chaos_exploitation.py``) | 00:00.032 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_functional_chaos_exploitation.py` (``plot_functional_chaos_exploitation.py``) | 00:00.023 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_ishigami_grouped_indices.py` (``plot_chaos_ishigami_grouped_indices.py``) | 00:00.023 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_ishigami_grouped_indices.py` (``plot_chaos_ishigami_grouped_indices.py``) | 00:00.022 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_functional_chaos_database.py` (``plot_functional_chaos_database.py``) | 00:00.020 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_functional_chaos_database.py` (``plot_functional_chaos_database.py``) | 00:00.019 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_functional_chaos_advanced_ctors.py` (``plot_functional_chaos_advanced_ctors.py``) | 00:00.007 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_distribution_transformation.py` (``plot_chaos_distribution_transformation.py``) | 00:00.002 | 0.0 MB |
+| :ref:`sphx_glr_auto_meta_modeling_polynomial_chaos_metamodel_plot_chaos_distribution_transformation.py` (``plot_chaos_distribution_transformation.py``) | 00:00.003 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_numerical_methods/general_methods/plot_ifs.rst.txt b/openturns/master/_sources/auto_numerical_methods/general_methods/plot_ifs.rst.txt
index 4187887adce..1bc040430c9 100644
--- a/openturns/master/_sources/auto_numerical_methods/general_methods/plot_ifs.rst.txt
+++ b/openturns/master/_sources/auto_numerical_methods/general_methods/plot_ifs.rst.txt
@@ -275,7 +275,7 @@ Sierpinski triangle
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 7.606 seconds)
+ **Total running time of the script:** (0 minutes 7.382 seconds)
.. _sphx_glr_download_auto_numerical_methods_general_methods_plot_ifs.py:
diff --git a/openturns/master/_sources/auto_numerical_methods/general_methods/plot_pce_design.rst.txt b/openturns/master/_sources/auto_numerical_methods/general_methods/plot_pce_design.rst.txt
index 0498f292a9e..367ea2cdbbc 100644
--- a/openturns/master/_sources/auto_numerical_methods/general_methods/plot_pce_design.rst.txt
+++ b/openturns/master/_sources/auto_numerical_methods/general_methods/plot_pce_design.rst.txt
@@ -547,7 +547,7 @@ Compute leave-one-out error
.. code-block:: none
- mseLOO = 57.42113628097007
+ mseLOO = 9.653785537855216
@@ -686,8 +686,8 @@ perform elementwise division and exponentiation
.. code-block:: none
- MSE LOO = 57.421136280963765
- Q2 LOO = -3.2148805893683257
+ MSE LOO = 9.653785537855308
+ Q2 LOO = 0.2848651462526617
diff --git a/openturns/master/_sources/auto_numerical_methods/general_methods/plot_random_generator.rst.txt b/openturns/master/_sources/auto_numerical_methods/general_methods/plot_random_generator.rst.txt
index 37af634669c..bb716c1c3af 100644
--- a/openturns/master/_sources/auto_numerical_methods/general_methods/plot_random_generator.rst.txt
+++ b/openturns/master/_sources/auto_numerical_methods/general_methods/plot_random_generator.rst.txt
@@ -127,7 +127,7 @@ Example 3: using a previously saved generator state
.. raw:: html
-
[0.184564]
+
[0.843059]
@@ -150,7 +150,7 @@ load the generator state
.. raw:: html
-
[0.184564]
+
[0.843059]
diff --git a/openturns/master/_sources/auto_numerical_methods/general_methods/sg_execution_times.rst.txt b/openturns/master/_sources/auto_numerical_methods/general_methods/sg_execution_times.rst.txt
index 878ddbb602e..2deb9554676 100644
--- a/openturns/master/_sources/auto_numerical_methods/general_methods/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_numerical_methods/general_methods/sg_execution_times.rst.txt
@@ -6,20 +6,20 @@
Computation times
=================
-**00:08.686** total execution time for **auto_numerical_methods_general_methods** files:
+**00:08.378** total execution time for **auto_numerical_methods_general_methods** files:
+----------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_ifs.py` (``plot_ifs.py``) | 00:07.606 | 0.0 MB |
+| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_ifs.py` (``plot_ifs.py``) | 00:07.382 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_regression_sinus.py` (``plot_regression_sinus.py``) | 00:00.453 | 0.0 MB |
+| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_regression_sinus.py` (``plot_regression_sinus.py``) | 00:00.390 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_pce_design.py` (``plot_pce_design.py``) | 00:00.393 | 0.0 MB |
+| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_pce_design.py` (``plot_pce_design.py``) | 00:00.373 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_estimate_integral_iterated_quadrature.py` (``plot_estimate_integral_iterated_quadrature.py``) | 00:00.130 | 0.0 MB |
+| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_estimate_integral_iterated_quadrature.py` (``plot_estimate_integral_iterated_quadrature.py``) | 00:00.129 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_regression_interval.py` (``plot_regression_interval.py``) | 00:00.089 | 0.0 MB |
+| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_regression_interval.py` (``plot_regression_interval.py``) | 00:00.090 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_study_save_load.py` (``plot_study_save_load.py``) | 00:00.014 | 0.0 MB |
+| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_study_save_load.py` (``plot_study_save_load.py``) | 00:00.011 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_numerical_methods_general_methods_plot_random_generator.py` (``plot_random_generator.py``) | 00:00.001 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_numerical_methods/iterative_statistics/sg_execution_times.rst.txt b/openturns/master/_sources/auto_numerical_methods/iterative_statistics/sg_execution_times.rst.txt
index 62ad1ecd3db..ba725e48711 100644
--- a/openturns/master/_sources/auto_numerical_methods/iterative_statistics/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_numerical_methods/iterative_statistics/sg_execution_times.rst.txt
@@ -6,12 +6,12 @@
Computation times
=================
-**00:00.602** total execution time for **auto_numerical_methods_iterative_statistics** files:
+**00:00.587** total execution time for **auto_numerical_methods_iterative_statistics** files:
+---------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_numerical_methods_iterative_statistics_plot_iterative_threshold.py` (``plot_iterative_threshold.py``) | 00:00.273 | 0.0 MB |
+| :ref:`sphx_glr_auto_numerical_methods_iterative_statistics_plot_iterative_threshold.py` (``plot_iterative_threshold.py``) | 00:00.279 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_numerical_methods_iterative_statistics_plot_iterative_extrema.py` (``plot_iterative_extrema.py``) | 00:00.182 | 0.0 MB |
+| :ref:`sphx_glr_auto_numerical_methods_iterative_statistics_plot_iterative_extrema.py` (``plot_iterative_extrema.py``) | 00:00.164 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_numerical_methods_iterative_statistics_plot_iterative_moments.py` (``plot_iterative_moments.py``) | 00:00.147 | 0.0 MB |
+| :ref:`sphx_glr_auto_numerical_methods_iterative_statistics_plot_iterative_moments.py` (``plot_iterative_moments.py``) | 00:00.144 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_numerical_methods/optimization/plot_control_termination.rst.txt b/openturns/master/_sources/auto_numerical_methods/optimization/plot_control_termination.rst.txt
index 7af9ba517b8..03c77b2d3b5 100644
--- a/openturns/master/_sources/auto_numerical_methods/optimization/plot_control_termination.rst.txt
+++ b/openturns/master/_sources/auto_numerical_methods/optimization/plot_control_termination.rst.txt
@@ -210,8 +210,8 @@ Run algorithm
.. code-block:: none
- event probability: 0.1419169760377995
- calls number: 6028
+ event probability: 0.14246481290765534
+ calls number: 5928
diff --git a/openturns/master/_sources/auto_numerical_methods/optimization/plot_ego.rst.txt b/openturns/master/_sources/auto_numerical_methods/optimization/plot_ego.rst.txt
index 48139bdee3d..67da5d3158c 100644
--- a/openturns/master/_sources/auto_numerical_methods/optimization/plot_ego.rst.txt
+++ b/openturns/master/_sources/auto_numerical_methods/optimization/plot_ego.rst.txt
@@ -840,7 +840,7 @@ We run the algorithm and get the result:
.. raw:: html
-
[0.124431,0.80366]
+
[0.124453,0.803588]
@@ -974,7 +974,7 @@ Reset default settings
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 4.536 seconds)
+ **Total running time of the script:** (0 minutes 4.371 seconds)
.. _sphx_glr_download_auto_numerical_methods_optimization_plot_ego.py:
diff --git a/openturns/master/_sources/auto_numerical_methods/optimization/plot_optimization_dlib.rst.txt b/openturns/master/_sources/auto_numerical_methods/optimization/plot_optimization_dlib.rst.txt
index 46133aeceb4..b2d68f71976 100644
--- a/openturns/master/_sources/auto_numerical_methods/optimization/plot_optimization_dlib.rst.txt
+++ b/openturns/master/_sources/auto_numerical_methods/optimization/plot_optimization_dlib.rst.txt
@@ -450,13 +450,13 @@ Retrieve results
.. code-block:: none
- x^ = [2.82693,1.21154,0.5]
- f(x^) = [9.11608e-24]
- Iteration number: 10
- Evaluation number: 14
- Absolute error: 2.354434048876458e-06
- Relative error: 7.555978502116947e-07
- Residual error: 2.52374697952362e-11
+ x^ = [3.0355,1.30093,0.5]
+ f(x^) = [3.06374e-27]
+ Iteration number: 7
+ Evaluation number: 8
+ Absolute error: 1.879043932354807e-07
+ Relative error: 5.625602187319411e-08
+ Residual error: 1.93598323593222e-14
Constraint error: 0.0
diff --git a/openturns/master/_sources/auto_numerical_methods/optimization/sg_execution_times.rst.txt b/openturns/master/_sources/auto_numerical_methods/optimization/sg_execution_times.rst.txt
index 9b4d0bb0bcf..737303b2ed2 100644
--- a/openturns/master/_sources/auto_numerical_methods/optimization/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_numerical_methods/optimization/sg_execution_times.rst.txt
@@ -6,24 +6,24 @@
Computation times
=================
-**00:07.057** total execution time for **auto_numerical_methods_optimization** files:
+**00:06.702** total execution time for **auto_numerical_methods_optimization** files:
+-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_ego.py` (``plot_ego.py``) | 00:04.536 | 0.0 MB |
+| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_ego.py` (``plot_ego.py``) | 00:04.371 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_rastrigin.py` (``plot_optimization_rastrigin.py``) | 00:01.034 | 0.0 MB |
+| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_rastrigin.py` (``plot_optimization_rastrigin.py``) | 00:00.973 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_rosenbrock.py` (``plot_optimization_rosenbrock.py``) | 00:00.656 | 0.0 MB |
+| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_rosenbrock.py` (``plot_optimization_rosenbrock.py``) | 00:00.613 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_dlib.py` (``plot_optimization_dlib.py``) | 00:00.397 | 0.0 MB |
+| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_dlib.py` (``plot_optimization_dlib.py``) | 00:00.364 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_pagmo.py` (``plot_optimization_pagmo.py``) | 00:00.180 | 0.0 MB |
+| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_pagmo.py` (``plot_optimization_pagmo.py``) | 00:00.164 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_bonmin.py` (``plot_optimization_bonmin.py``) | 00:00.088 | 0.0 MB |
+| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_constraints.py` (``plot_optimization_constraints.py``) | 00:00.070 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_nlopt.py` (``plot_optimization_nlopt.py``) | 00:00.076 | 0.0 MB |
+| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_nlopt.py` (``plot_optimization_nlopt.py``) | 00:00.068 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_constraints.py` (``plot_optimization_constraints.py``) | 00:00.069 | 0.0 MB |
+| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_optimization_bonmin.py` (``plot_optimization_bonmin.py``) | 00:00.058 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_numerical_methods_optimization_plot_control_termination.py` (``plot_control_termination.py``) | 00:00.014 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_probabilistic_modeling/copulas/sg_execution_times.rst.txt b/openturns/master/_sources/auto_probabilistic_modeling/copulas/sg_execution_times.rst.txt
index 4148a611605..1e458eed17c 100644
--- a/openturns/master/_sources/auto_probabilistic_modeling/copulas/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_probabilistic_modeling/copulas/sg_execution_times.rst.txt
@@ -6,14 +6,14 @@
Computation times
=================
-**00:00.417** total execution time for **auto_probabilistic_modeling_copulas** files:
+**00:00.408** total execution time for **auto_probabilistic_modeling_copulas** files:
+-----------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_copulas_plot_ordinal_sum_copula.py` (``plot_ordinal_sum_copula.py``) | 00:00.413 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_copulas_plot_ordinal_sum_copula.py` (``plot_ordinal_sum_copula.py``) | 00:00.405 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_copulas_plot_extract_copula.py` (``plot_extract_copula.py``) | 00:00.002 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_copulas_plot_extract_copula.py` (``plot_extract_copula.py``) | 00:00.001 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_copulas_plot_composed_copula.py` (``plot_composed_copula.py``) | 00:00.002 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_copulas_plot_composed_copula.py` (``plot_composed_copula.py``) | 00:00.001 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_probabilistic_modeling_copulas_plot_create_copula.py` (``plot_create_copula.py``) | 00:00.001 | 0.0 MB |
+-----------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_probabilistic_modeling/distributions/sg_execution_times.rst.txt b/openturns/master/_sources/auto_probabilistic_modeling/distributions/sg_execution_times.rst.txt
index 75b7c85cf47..2d339e5c1a2 100644
--- a/openturns/master/_sources/auto_probabilistic_modeling/distributions/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_probabilistic_modeling/distributions/sg_execution_times.rst.txt
@@ -6,44 +6,44 @@
Computation times
=================
-**00:07.405** total execution time for **auto_probabilistic_modeling_distributions** files:
+**00:06.296** total execution time for **auto_probabilistic_modeling_distributions** files:
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_draw_multivariate_distributions.py` (``plot_create_draw_multivariate_distributions.py``) | 00:01.021 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_quick_start_guide_distributions.py` (``plot_quick_start_guide_distributions.py``) | 00:00.905 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_quick_start_guide_distributions.py` (``plot_quick_start_guide_distributions.py``) | 00:01.008 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_draw_multivariate_distributions.py` (``plot_create_draw_multivariate_distributions.py``) | 00:00.865 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_distribution_transformation.py` (``plot_distribution_transformation.py``) | 00:00.768 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_minimum_volume_level_sets.py` (``plot_minimum_volume_level_sets.py``) | 00:00.645 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_minimum_volume_level_sets.py` (``plot_minimum_volume_level_sets.py``) | 00:00.732 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_distribution_transformation.py` (``plot_distribution_transformation.py``) | 00:00.632 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_order_statistics_distribution.py` (``plot_order_statistics_distribution.py``) | 00:00.711 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_order_statistics_distribution.py` (``plot_order_statistics_distribution.py``) | 00:00.558 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_truncated_distribution.py` (``plot_truncated_distribution.py``) | 00:00.494 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_truncated_distribution.py` (``plot_truncated_distribution.py``) | 00:00.393 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_overview_univariate_distributions.py` (``plot_overview_univariate_distributions.py``) | 00:00.424 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_overview_univariate_distributions.py` (``plot_overview_univariate_distributions.py``) | 00:00.379 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_extreme_value_distribution.py` (``plot_create_extreme_value_distribution.py``) | 00:00.333 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_distribution_manipulation.py` (``plot_distribution_manipulation.py``) | 00:00.291 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_and_draw_scalar_distributions.py` (``plot_create_and_draw_scalar_distributions.py``) | 00:00.304 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_extreme_value_distribution.py` (``plot_create_extreme_value_distribution.py``) | 00:00.273 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_random_mixture.py` (``plot_create_random_mixture.py``) | 00:00.299 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_and_draw_scalar_distributions.py` (``plot_create_and_draw_scalar_distributions.py``) | 00:00.253 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_distribution_manipulation.py` (``plot_distribution_manipulation.py``) | 00:00.296 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_random_mixture.py` (``plot_create_random_mixture.py``) | 00:00.244 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_bayes_distribution.py` (``plot_bayes_distribution.py``) | 00:00.221 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_bayes_distribution.py` (``plot_bayes_distribution.py``) | 00:00.193 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_mixture_distribution.py` (``plot_mixture_distribution.py``) | 00:00.220 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_mixture_distribution.py` (``plot_mixture_distribution.py``) | 00:00.187 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_generate_by_inversion.py` (``plot_generate_by_inversion.py``) | 00:00.182 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_generate_by_inversion.py` (``plot_generate_by_inversion.py``) | 00:00.160 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_python_distribution.py` (``plot_python_distribution.py``) | 00:00.117 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_python_distribution.py` (``plot_python_distribution.py``) | 00:00.104 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_conditional_distribution.py` (``plot_conditional_distribution.py``) | 00:00.113 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_conditional_distribution.py` (``plot_conditional_distribution.py``) | 00:00.088 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_maximum_distribution.py` (``plot_maximum_distribution.py``) | 00:00.081 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_your_own_dist.py` (``plot_create_your_own_dist.py``) | 00:00.063 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_create_your_own_dist.py` (``plot_create_your_own_dist.py``) | 00:00.077 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_maximum_distribution.py` (``plot_maximum_distribution.py``) | 00:00.059 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_conditional_random_vector.py` (``plot_conditional_random_vector.py``) | 00:00.001 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_distributions_plot_conditional_random_vector.py` (``plot_conditional_random_vector.py``) | 00:00.002 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_probabilistic_modeling/random_vectors/sg_execution_times.rst.txt b/openturns/master/_sources/auto_probabilistic_modeling/random_vectors/sg_execution_times.rst.txt
index 8fa19099b91..a786dfc642a 100644
--- a/openturns/master/_sources/auto_probabilistic_modeling/random_vectors/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_probabilistic_modeling/random_vectors/sg_execution_times.rst.txt
@@ -6,7 +6,7 @@
Computation times
=================
-**00:00.006** total execution time for **auto_probabilistic_modeling_random_vectors** files:
+**00:00.005** total execution time for **auto_probabilistic_modeling_random_vectors** files:
+----------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_probabilistic_modeling_random_vectors_plot_random_vector_manipulation.py` (``plot_random_vector_manipulation.py``) | 00:00.002 | 0.0 MB |
diff --git a/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_create_mesh.rst.txt b/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_create_mesh.rst.txt
index 723d785b114..68ab84a8f53 100644
--- a/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_create_mesh.rst.txt
+++ b/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_create_mesh.rst.txt
@@ -388,7 +388,7 @@ Display figures
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 2.053 seconds)
+ **Total running time of the script:** (0 minutes 2.134 seconds)
.. _sphx_glr_download_auto_probabilistic_modeling_stochastic_processes_plot_create_mesh.py:
diff --git a/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_gaussian_process_covariance_hmat.rst.txt b/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_gaussian_process_covariance_hmat.rst.txt
index e35d95d89cb..71bfbf01498 100644
--- a/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_gaussian_process_covariance_hmat.rst.txt
+++ b/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_gaussian_process_covariance_hmat.rst.txt
@@ -228,7 +228,7 @@ Reset default settings
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 2.378 seconds)
+ **Total running time of the script:** (0 minutes 2.145 seconds)
.. _sphx_glr_download_auto_probabilistic_modeling_stochastic_processes_plot_gaussian_process_covariance_hmat.py:
diff --git a/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_userdefined_covariance_model.rst.txt b/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_userdefined_covariance_model.rst.txt
index 7d602101e87..8d8b304f6c1 100644
--- a/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_userdefined_covariance_model.rst.txt
+++ b/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/plot_userdefined_covariance_model.rst.txt
@@ -157,7 +157,7 @@ Draw the covariance model
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 2.521 seconds)
+ **Total running time of the script:** (0 minutes 2.226 seconds)
.. _sphx_glr_download_auto_probabilistic_modeling_stochastic_processes_plot_userdefined_covariance_model.py:
diff --git a/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/sg_execution_times.rst.txt b/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/sg_execution_times.rst.txt
index 919c3d95b25..06ad716f6ba 100644
--- a/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_probabilistic_modeling/stochastic_processes/sg_execution_times.rst.txt
@@ -6,52 +6,52 @@
Computation times
=================
-**00:13.839** total execution time for **auto_probabilistic_modeling_stochastic_processes** files:
+**00:12.813** total execution time for **auto_probabilistic_modeling_stochastic_processes** files:
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_userdefined_covariance_model.py` (``plot_userdefined_covariance_model.py``) | 00:02.521 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_userdefined_covariance_model.py` (``plot_userdefined_covariance_model.py``) | 00:02.226 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_gaussian_process_covariance_hmat.py` (``plot_gaussian_process_covariance_hmat.py``) | 00:02.378 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_gaussian_process_covariance_hmat.py` (``plot_gaussian_process_covariance_hmat.py``) | 00:02.145 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_create_mesh.py` (``plot_create_mesh.py``) | 00:02.053 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_create_mesh.py` (``plot_create_mesh.py``) | 00:02.134 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_field_manipulation.py` (``plot_field_manipulation.py``) | 00:01.744 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_field_manipulation.py` (``plot_field_manipulation.py``) | 00:01.653 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_box_cox_transform.py` (``plot_box_cox_transform.py``) | 00:01.084 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_box_cox_transform.py` (``plot_box_cox_transform.py``) | 00:01.016 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_gaussian_processes_comparison.py` (``plot_gaussian_processes_comparison.py``) | 00:00.800 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_gaussian_processes_comparison.py` (``plot_gaussian_processes_comparison.py``) | 00:00.705 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_process_manipulation.py` (``plot_process_manipulation.py``) | 00:00.521 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_process_manipulation.py` (``plot_process_manipulation.py``) | 00:00.447 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_discrete_markov_chain_process.py` (``plot_discrete_markov_chain_process.py``) | 00:00.448 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_random_walk_process.py` (``plot_random_walk_process.py``) | 00:00.312 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_random_walk_process.py` (``plot_random_walk_process.py``) | 00:00.307 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_create_and_manipulate_arma_process.py` (``plot_create_and_manipulate_arma_process.py``) | 00:00.301 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_create_and_manipulate_arma_process.py` (``plot_create_and_manipulate_arma_process.py``) | 00:00.302 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_discrete_markov_chain_process.py` (``plot_discrete_markov_chain_process.py``) | 00:00.292 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_kronecker_covmodel.py` (``plot_kronecker_covmodel.py``) | 00:00.275 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_kronecker_covmodel.py` (``plot_kronecker_covmodel.py``) | 00:00.264 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_white_noise_process.py` (``plot_white_noise_process.py``) | 00:00.174 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_mix_rv_process.py` (``plot_mix_rv_process.py``) | 00:00.190 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_add_trend.py` (``plot_add_trend.py``) | 00:00.169 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_white_noise_process.py` (``plot_white_noise_process.py``) | 00:00.161 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_export_field_vtk.py` (``plot_export_field_vtk.py``) | 00:00.166 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_create_normal_process.py` (``plot_create_normal_process.py``) | 00:00.142 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_mix_rv_process.py` (``plot_mix_rv_process.py``) | 00:00.164 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_add_trend.py` (``plot_add_trend.py``) | 00:00.134 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_trend_transform.py` (``plot_trend_transform.py``) | 00:00.132 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_export_field_vtk.py` (``plot_export_field_vtk.py``) | 00:00.132 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_create_normal_process.py` (``plot_create_normal_process.py``) | 00:00.131 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_trend_transform.py` (``plot_trend_transform.py``) | 00:00.123 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_aggregated_process.py` (``plot_aggregated_process.py``) | 00:00.125 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_timeseries_manipulation.py` (``plot_timeseries_manipulation.py``) | 00:00.119 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_timeseries_manipulation.py` (``plot_timeseries_manipulation.py``) | 00:00.123 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_aggregated_process.py` (``plot_aggregated_process.py``) | 00:00.111 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_functional_basis_process.py` (``plot_functional_basis_process.py``) | 00:00.086 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_user_stationary_covmodel.py` (``plot_user_stationary_covmodel.py``) | 00:00.072 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_user_stationary_covmodel.py` (``plot_user_stationary_covmodel.py``) | 00:00.067 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_functional_basis_process.py` (``plot_functional_basis_process.py``) | 00:00.071 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_userdefined_spectral_model.py` (``plot_userdefined_spectral_model.py``) | 00:00.066 | 0.0 MB |
+| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_userdefined_spectral_model.py` (``plot_userdefined_spectral_model.py``) | 00:00.061 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_probabilistic_modeling_stochastic_processes_plot_create_stationary_covmodel.py` (``plot_create_stationary_covmodel.py``) | 00:00.001 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_reliability_sensitivity/central_dispersion/sg_execution_times.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/central_dispersion/sg_execution_times.rst.txt
index 2bad092375f..7cf34467f5b 100644
--- a/openturns/master/_sources/auto_reliability_sensitivity/central_dispersion/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_reliability_sensitivity/central_dispersion/sg_execution_times.rst.txt
@@ -6,12 +6,12 @@
Computation times
=================
-**00:00.614** total execution time for **auto_reliability_sensitivity_central_dispersion** files:
+**00:00.642** total execution time for **auto_reliability_sensitivity_central_dispersion** files:
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_central_dispersion_plot_expectation_simulation_algorithm.py` (``plot_expectation_simulation_algorithm.py``) | 00:00.437 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_central_dispersion_plot_expectation_simulation_algorithm.py` (``plot_expectation_simulation_algorithm.py``) | 00:00.466 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_central_dispersion_plot_central_tendency.py` (``plot_central_tendency.py``) | 00:00.129 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_central_dispersion_plot_central_tendency.py` (``plot_central_tendency.py``) | 00:00.128 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_reliability_sensitivity_central_dispersion_plot_estimate_moments_taylor.py` (``plot_estimate_moments_taylor.py``) | 00:00.048 | 0.0 MB |
+---------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/plot_smolyak_experiment.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/plot_smolyak_experiment.rst.txt
index d4bfc78b7cc..f18e9610d97 100644
--- a/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/plot_smolyak_experiment.rst.txt
+++ b/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/plot_smolyak_experiment.rst.txt
@@ -294,7 +294,7 @@ This growth depends on the dimension of the problem.
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 2.125 seconds)
+ **Total running time of the script:** (0 minutes 2.056 seconds)
.. _sphx_glr_download_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_experiment.py:
diff --git a/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/plot_smolyak_quadrature.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/plot_smolyak_quadrature.rst.txt
index 7dc624ba54b..591947fe319 100644
--- a/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/plot_smolyak_quadrature.rst.txt
+++ b/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/plot_smolyak_quadrature.rst.txt
@@ -584,7 +584,7 @@ We can finally create the graph.
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 7.426 seconds)
+ **Total running time of the script:** (0 minutes 7.336 seconds)
.. _sphx_glr_download_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_quadrature.py:
diff --git a/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/sg_execution_times.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/sg_execution_times.rst.txt
index 83db6d658f1..dadee48b877 100644
--- a/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_reliability_sensitivity/design_of_experiments/sg_execution_times.rst.txt
@@ -6,38 +6,38 @@
Computation times
=================
-**00:14.810** total execution time for **auto_reliability_sensitivity_design_of_experiments** files:
+**00:14.485** total execution time for **auto_reliability_sensitivity_design_of_experiments** files:
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_quadrature.py` (``plot_smolyak_quadrature.py``) | 00:07.426 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_quadrature.py` (``plot_smolyak_quadrature.py``) | 00:07.336 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_experiment.py` (``plot_smolyak_experiment.py``) | 00:02.125 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_experiment.py` (``plot_smolyak_experiment.py``) | 00:02.056 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_plot_design.py` (``plot_plot_design.py``) | 00:01.302 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_plot_design.py` (``plot_plot_design.py``) | 00:01.241 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_design_of_experiments.py` (``plot_design_of_experiments.py``) | 00:01.070 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_design_of_experiments.py` (``plot_design_of_experiments.py``) | 00:01.026 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_low_discrepancy_sequence.py` (``plot_low_discrepancy_sequence.py``) | 00:00.566 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_low_discrepancy_sequence.py` (``plot_low_discrepancy_sequence.py``) | 00:00.548 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_merge.py` (``plot_smolyak_merge.py``) | 00:00.471 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_merge.py` (``plot_smolyak_merge.py``) | 00:00.464 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_optimal_lhs.py` (``plot_optimal_lhs.py``) | 00:00.468 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_optimal_lhs.py` (``plot_optimal_lhs.py``) | 00:00.463 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_create_deterministic_doe.py` (``plot_create_deterministic_doe.py``) | 00:00.293 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_create_deterministic_doe.py` (``plot_create_deterministic_doe.py``) | 00:00.285 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_deterministic_design.py` (``plot_deterministic_design.py``) | 00:00.268 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_deterministic_design.py` (``plot_deterministic_design.py``) | 00:00.262 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_indices.py` (``plot_smolyak_indices.py``) | 00:00.236 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_smolyak_indices.py` (``plot_smolyak_indices.py``) | 00:00.232 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_mixed_design.py` (``plot_mixed_design.py``) | 00:00.133 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_mixed_design.py` (``plot_mixed_design.py``) | 00:00.129 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_design_of_experiment_continuous_discrete.py` (``plot_design_of_experiment_continuous_discrete.py``) | 00:00.119 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_design_of_experiment_continuous_discrete.py` (``plot_design_of_experiment_continuous_discrete.py``) | 00:00.115 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_create_random_doe.py` (``plot_create_random_doe.py``) | 00:00.117 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_create_random_doe.py` (``plot_create_random_doe.py``) | 00:00.115 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_gauss_product_experiment.py` (``plot_gauss_product_experiment.py``) | 00:00.058 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_gauss_product_experiment.py` (``plot_gauss_product_experiment.py``) | 00:00.056 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_probabilistic_design.py` (``plot_probabilistic_design.py``) | 00:00.056 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_probabilistic_design.py` (``plot_probabilistic_design.py``) | 00:00.055 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_reliability_sensitivity_design_of_experiments_plot_composite_experiment.py` (``plot_composite_experiment.py``) | 00:00.054 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_estimate_probability_adaptive_directional_sampling.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_estimate_probability_adaptive_directional_sampling.rst.txt
index 0c212c24601..fc6e13987ad 100644
--- a/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_estimate_probability_adaptive_directional_sampling.rst.txt
+++ b/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_estimate_probability_adaptive_directional_sampling.rst.txt
@@ -218,7 +218,7 @@ Retrieve results.
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 2.039 seconds)
+ **Total running time of the script:** (0 minutes 2.107 seconds)
.. _sphx_glr_download_auto_reliability_sensitivity_reliability_plot_estimate_probability_adaptive_directional_sampling.py:
diff --git a/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_estimate_probability_form_oscillator.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_estimate_probability_form_oscillator.rst.txt
index 3d769b95cb3..66403b351d7 100644
--- a/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_estimate_probability_form_oscillator.rst.txt
+++ b/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_estimate_probability_form_oscillator.rst.txt
@@ -725,7 +725,7 @@ We can see that this post-treatment of FORM result allows one to greatly improve
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 5.902 seconds)
+ **Total running time of the script:** (0 minutes 5.173 seconds)
.. _sphx_glr_download_auto_reliability_sensitivity_reliability_plot_estimate_probability_form_oscillator.py:
diff --git a/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_proba_system_event.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_proba_system_event.rst.txt
index 88e7a4b2f60..6e20892ffeb 100644
--- a/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_proba_system_event.rst.txt
+++ b/openturns/master/_sources/auto_reliability_sensitivity/reliability/plot_proba_system_event.rst.txt
@@ -387,7 +387,7 @@ Draw the graphs!
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 2.251 seconds)
+ **Total running time of the script:** (0 minutes 2.200 seconds)
.. _sphx_glr_download_auto_reliability_sensitivity_reliability_plot_proba_system_event.py:
diff --git a/openturns/master/_sources/auto_reliability_sensitivity/reliability/sg_execution_times.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/reliability/sg_execution_times.rst.txt
index 0dc1e160558..001d1aa261a 100644
--- a/openturns/master/_sources/auto_reliability_sensitivity/reliability/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_reliability_sensitivity/reliability/sg_execution_times.rst.txt
@@ -6,56 +6,56 @@
Computation times
=================
-**00:18.694** total execution time for **auto_reliability_sensitivity_reliability** files:
+**00:17.966** total execution time for **auto_reliability_sensitivity_reliability** files:
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_form_oscillator.py` (``plot_estimate_probability_form_oscillator.py``) | 00:05.902 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_form_oscillator.py` (``plot_estimate_probability_form_oscillator.py``) | 00:05.173 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_proba_system_event.py` (``plot_proba_system_event.py``) | 00:02.251 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_proba_system_event.py` (``plot_proba_system_event.py``) | 00:02.200 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_adaptive_directional_sampling.py` (``plot_estimate_probability_adaptive_directional_sampling.py``) | 00:02.039 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_adaptive_directional_sampling.py` (``plot_estimate_probability_adaptive_directional_sampling.py``) | 00:02.107 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_crossentropy.py` (``plot_crossentropy.py``) | 00:01.495 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_crossentropy.py` (``plot_crossentropy.py``) | 00:01.433 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_form_explained.py` (``plot_form_explained.py``) | 00:00.809 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_randomized_qmc.py` (``plot_estimate_probability_randomized_qmc.py``) | 00:00.819 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_randomized_qmc.py` (``plot_estimate_probability_randomized_qmc.py``) | 00:00.804 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_form_explained.py` (``plot_form_explained.py``) | 00:00.804 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_subset_sampling.py` (``plot_subset_sampling.py``) | 00:00.722 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_subset_sampling.py` (``plot_subset_sampling.py``) | 00:00.743 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_create_domain_event.py` (``plot_create_domain_event.py``) | 00:00.633 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_directional_sampling.py` (``plot_estimate_probability_directional_sampling.py``) | 00:00.629 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_event_system.py` (``plot_event_system.py``) | 00:00.630 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_event_system.py` (``plot_event_system.py``) | 00:00.620 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_directional_sampling.py` (``plot_estimate_probability_directional_sampling.py``) | 00:00.614 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_create_domain_event.py` (``plot_create_domain_event.py``) | 00:00.619 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_axial_stressed_beam.py` (``plot_axial_stressed_beam.py``) | 00:00.522 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_axial_stressed_beam.py` (``plot_axial_stressed_beam.py``) | 00:00.515 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_multi_form.py` (``plot_multi_form.py``) | 00:00.489 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_multi_form.py` (``plot_multi_form.py``) | 00:00.495 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_nais.py` (``plot_nais.py``) | 00:00.441 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_nais.py` (``plot_nais.py``) | 00:00.455 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_axial_stressed_beam_quickstart.py` (``plot_axial_stressed_beam_quickstart.py``) | 00:00.387 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_axial_stressed_beam_quickstart.py` (``plot_axial_stressed_beam_quickstart.py``) | 00:00.384 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_form.py` (``plot_estimate_probability_form.py``) | 00:00.351 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_form.py` (``plot_estimate_probability_form.py``) | 00:00.349 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_importance_sampling.py` (``plot_estimate_probability_importance_sampling.py``) | 00:00.150 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_importance_sampling.py` (``plot_estimate_probability_importance_sampling.py``) | 00:00.153 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_probability_simulation_results.py` (``plot_probability_simulation_results.py``) | 00:00.137 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_probability_simulation_results.py` (``plot_probability_simulation_results.py``) | 00:00.142 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_flood_model.py` (``plot_flood_model.py``) | 00:00.117 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_create_threshold_event.py` (``plot_create_threshold_event.py``) | 00:00.082 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_create_threshold_event.py` (``plot_create_threshold_event.py``) | 00:00.083 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_lhs.py` (``plot_estimate_probability_lhs.py``) | 00:00.041 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_lhs.py` (``plot_estimate_probability_lhs.py``) | 00:00.040 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_monte_carlo.py` (``plot_estimate_probability_monte_carlo.py``) | 00:00.032 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_probability_simulation_parametrization.py` (``plot_probability_simulation_parametrization.py``) | 00:00.037 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_probability_simulation_parametrization.py` (``plot_probability_simulation_parametrization.py``) | 00:00.032 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_estimate_probability_monte_carlo.py` (``plot_estimate_probability_monte_carlo.py``) | 00:00.033 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_strong_maximum_test.py` (``plot_strong_maximum_test.py``) | 00:00.005 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_post_analytical_importance_sampling.py` (``plot_post_analytical_importance_sampling.py``) | 00:00.007 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_post_analytical_importance_sampling.py` (``plot_post_analytical_importance_sampling.py``) | 00:00.005 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_strong_maximum_test.py` (``plot_strong_maximum_test.py``) | 00:00.005 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_plot_event_manipulation.py` (``plot_event_manipulation.py``) | 00:00.002 | 0.0 MB |
+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_reliability_sensitivity/reliability_processes/plot_field_fca_sobol.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/reliability_processes/plot_field_fca_sobol.rst.txt
index d35fa300720..de34d08862c 100644
--- a/openturns/master/_sources/auto_reliability_sensitivity/reliability_processes/plot_field_fca_sobol.rst.txt
+++ b/openturns/master/_sources/auto_reliability_sensitivity/reliability_processes/plot_field_fca_sobol.rst.txt
@@ -521,7 +521,7 @@ Reset default settings
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 6.974 seconds)
+ **Total running time of the script:** (0 minutes 6.458 seconds)
.. _sphx_glr_download_auto_reliability_sensitivity_reliability_processes_plot_field_fca_sobol.py:
diff --git a/openturns/master/_sources/auto_reliability_sensitivity/reliability_processes/sg_execution_times.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/reliability_processes/sg_execution_times.rst.txt
index 3c717c2adb8..13a2dffa463 100644
--- a/openturns/master/_sources/auto_reliability_sensitivity/reliability_processes/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_reliability_sensitivity/reliability_processes/sg_execution_times.rst.txt
@@ -6,12 +6,12 @@
Computation times
=================
-**00:07.206** total execution time for **auto_reliability_sensitivity_reliability_processes** files:
+**00:06.637** total execution time for **auto_reliability_sensitivity_reliability_processes** files:
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_processes_plot_field_fca_sobol.py` (``plot_field_fca_sobol.py``) | 00:06.974 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_processes_plot_field_fca_sobol.py` (``plot_field_fca_sobol.py``) | 00:06.458 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_processes_plot_estimate_probability_monte_carlo_process.py` (``plot_estimate_probability_monte_carlo_process.py``) | 00:00.230 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_processes_plot_estimate_probability_monte_carlo_process.py` (``plot_estimate_probability_monte_carlo_process.py``) | 00:00.177 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
| :ref:`sphx_glr_auto_reliability_sensitivity_reliability_processes_plot_event_process.py` (``plot_event_process.py``) | 00:00.002 | 0.0 MB |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/auto_reliability_sensitivity/sensitivity_analysis/plot_sensitivity_wingweight.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/sensitivity_analysis/plot_sensitivity_wingweight.rst.txt
index 462578d97b3..9165c6af93f 100644
--- a/openturns/master/_sources/auto_reliability_sensitivity/sensitivity_analysis/plot_sensitivity_wingweight.rst.txt
+++ b/openturns/master/_sources/auto_reliability_sensitivity/sensitivity_analysis/plot_sensitivity_wingweight.rst.txt
@@ -1188,7 +1188,7 @@ We can also see that the asymptotic p-values and p-values estimated by permutati
.. rst-class:: sphx-glr-timing
- **Total running time of the script:** (0 minutes 5.914 seconds)
+ **Total running time of the script:** (0 minutes 5.528 seconds)
.. _sphx_glr_download_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_wingweight.py:
diff --git a/openturns/master/_sources/auto_reliability_sensitivity/sensitivity_analysis/sg_execution_times.rst.txt b/openturns/master/_sources/auto_reliability_sensitivity/sensitivity_analysis/sg_execution_times.rst.txt
index e75bda3e675..f4da8657e39 100644
--- a/openturns/master/_sources/auto_reliability_sensitivity/sensitivity_analysis/sg_execution_times.rst.txt
+++ b/openturns/master/_sources/auto_reliability_sensitivity/sensitivity_analysis/sg_execution_times.rst.txt
@@ -6,22 +6,22 @@
Computation times
=================
-**00:09.307** total execution time for **auto_reliability_sensitivity_sensitivity_analysis** files:
+**00:08.513** total execution time for **auto_reliability_sensitivity_sensitivity_analysis** files:
+-------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_wingweight.py` (``plot_sensitivity_wingweight.py``) | 00:05.914 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_wingweight.py` (``plot_sensitivity_wingweight.py``) | 00:05.528 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_functional_chaos_sensitivity.py` (``plot_functional_chaos_sensitivity.py``) | 00:00.962 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_functional_chaos_sensitivity.py` (``plot_functional_chaos_sensitivity.py``) | 00:00.846 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_par_coo.py` (``plot_sensitivity_par_coo.py``) | 00:00.881 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_par_coo.py` (``plot_sensitivity_par_coo.py``) | 00:00.731 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_hsic_estimators_ishigami.py` (``plot_hsic_estimators_ishigami.py``) | 00:00.750 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_hsic_estimators_ishigami.py` (``plot_hsic_estimators_ishigami.py``) | 00:00.703 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_sobol.py` (``plot_sensitivity_sobol.py``) | 00:00.474 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_sobol.py` (``plot_sensitivity_sobol.py``) | 00:00.412 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_ancova.py` (``plot_sensitivity_ancova.py``) | 00:00.131 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_ancova.py` (``plot_sensitivity_ancova.py``) | 00:00.117 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_sobol_multivariate.py` (``plot_sensitivity_sobol_multivariate.py``) | 00:00.114 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_sobol_multivariate.py` (``plot_sensitivity_sobol_multivariate.py``) | 00:00.097 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
-| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_fast.py` (``plot_sensitivity_fast.py``) | 00:00.080 | 0.0 MB |
+| :ref:`sphx_glr_auto_reliability_sensitivity_sensitivity_analysis_plot_sensitivity_fast.py` (``plot_sensitivity_fast.py``) | 00:00.078 | 0.0 MB |
+-------------------------------------------------------------------------------------------------------------------------------------------------------+-----------+--------+
diff --git a/openturns/master/_sources/bibliography.rst.txt b/openturns/master/_sources/bibliography.rst.txt
index aabff29fe4f..77fd2f13835 100644
--- a/openturns/master/_sources/bibliography.rst.txt
+++ b/openturns/master/_sources/bibliography.rst.txt
@@ -113,6 +113,9 @@ Bibliography
.. [gamboa2013] Gamboa, F., Janon, A., Klein, T. & Lagnoux, A. *Sensitivity
analysis for multidimensional and functional outputs.* 2013.
`pdf `__
+.. [genz2003] Genz A., Cools R., *An adaptive numerical cubature algorithm for simplices*,
+ ACM Transactions on Mathematical Software 29(3):297-308, September 2003
+ `pdf `__
.. [gerstner1998] Gerstner, T., & Griebel, M. (1998). *Numerical integration using
sparse grids.* Numerical algorithms, 18 (3), 209-232.
`pdf `__
diff --git a/openturns/master/_sources/user_manual/_generated/openturns.experimental.SimplicialCubature.rst.txt b/openturns/master/_sources/user_manual/_generated/openturns.experimental.SimplicialCubature.rst.txt
new file mode 100644
index 00000000000..a960d624d65
--- /dev/null
+++ b/openturns/master/_sources/user_manual/_generated/openturns.experimental.SimplicialCubature.rst.txt
@@ -0,0 +1,14 @@
+SimplicialCubature
+=========================================
+
+.. currentmodule:: openturns.experimental
+
+.. autoclass:: SimplicialCubature
+
+
+ .. automethod:: __init__
+
+
+
+.. minigallery:: openturns.experimental.SimplicialCubature
+ :add-heading: Examples using the class
\ No newline at end of file
diff --git a/openturns/master/_sources/user_manual/_generated/openturns.experimental.TruncatedOverMesh.rst.txt b/openturns/master/_sources/user_manual/_generated/openturns.experimental.TruncatedOverMesh.rst.txt
new file mode 100644
index 00000000000..cc6dd121a3e
--- /dev/null
+++ b/openturns/master/_sources/user_manual/_generated/openturns.experimental.TruncatedOverMesh.rst.txt
@@ -0,0 +1,16 @@
+TruncatedOverMesh
+========================================
+
+.. plot:: pyplots/TruncatedOverMesh.py
+ :include-source: False
+
+.. currentmodule:: openturns.experimental
+
+.. autoclass:: TruncatedOverMesh
+
+
+ .. automethod:: __init__
+
+
+.. minigallery:: openturns.experimental.TruncatedOverMesh
+ :add-heading: Examples using the class
\ No newline at end of file
diff --git a/openturns/master/_sources/user_manual/integration.rst.txt b/openturns/master/_sources/user_manual/integration.rst.txt
index 12c26189a40..26ae2e3595c 100644
--- a/openturns/master/_sources/user_manual/integration.rst.txt
+++ b/openturns/master/_sources/user_manual/integration.rst.txt
@@ -10,6 +10,7 @@ Integration
IntegrationAlgorithm
FilonQuadrature
+ experimental.SimplicialCubature
.. autosummary::
:toctree: _generated/
diff --git a/openturns/master/_sources/user_manual/probabilistic_modelling.rst.txt b/openturns/master/_sources/user_manual/probabilistic_modelling.rst.txt
index f7d30342c09..3021977f832 100644
--- a/openturns/master/_sources/user_manual/probabilistic_modelling.rst.txt
+++ b/openturns/master/_sources/user_manual/probabilistic_modelling.rst.txt
@@ -82,6 +82,11 @@ Continuous parametric distributions
Trapezoidal
Triangular
TruncatedNormal
+
+ :template: classWithPlot.rst_t
+ experimental.TruncatedOverMesh
+
+ :template: Distribution.rst_t
Uniform
:template: classWithPlot.rst_t
diff --git a/openturns/master/auto_calibration/bayesian_calibration/plot_gibbs.html b/openturns/master/auto_calibration/bayesian_calibration/plot_gibbs.html
index c4b38337ed6..a44b31cbfb3 100644
--- a/openturns/master/auto_calibration/bayesian_calibration/plot_gibbs.html
+++ b/openturns/master/auto_calibration/bayesian_calibration/plot_gibbs.html
@@ -245,7 +245,7 @@ Quick search
View.ShowAll()
-Total running time of the script: (0 minutes 12.523 seconds)
+Total running time of the script: (0 minutes 11.922 seconds)
-Total running time of the script: (0 minutes 5.970 seconds)
+Total running time of the script: (0 minutes 5.532 seconds)