From b4dfaf8c77242b174136d825d91cf734d93ee73f Mon Sep 17 00:00:00 2001 From: John Jakeman Date: Thu, 23 May 2024 14:39:27 -0600 Subject: [PATCH] Add sciml tutorials to conf.py file. Somehow they were removed during merge of devel and sciml branches. But I cannot easily revert back and apply changes again. --- docs/source/conf.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/source/conf.py b/docs/source/conf.py index f67e783b..d87c3d73 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -94,6 +94,17 @@ 'plot_multiindex_collocation.py', 'plot_multifidelity_gp.py', 'plot_gaussian_mfnets.py', + # SciML + 'plot_derive_certann.py', + 'plot_fourier_transform.py', + 'plot_derive_dct.py', + 'plot_dct_properties.py', + 'plot_neural_operator_cases.py', + 'plot_greens_functions.py', + 'plot_kernels.py', + 'plot_learning_greens_functions.py', + 'plot_wave_equation.py', + 'plot_neural_network_backprop.py', ] example_dirs = ['../../tutorials', '../../examples']