From d2f3722936bc174d4c4e7c0df3b3d436dd08525f Mon Sep 17 00:00:00 2001 From: Dimitris Tsapetis Date: Tue, 2 May 2023 11:31:55 -0400 Subject: [PATCH] Removes Kernel cross-ref --- docs/source/architecture.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/architecture.rst b/docs/source/architecture.rst index 3e4a926e..03cb0d23 100644 --- a/docs/source/architecture.rst +++ b/docs/source/architecture.rst @@ -129,7 +129,7 @@ Surrogates Another module that has extensively restructured in v4 is the surrogates. Apart from the :class:`.SROM` method which was retained as an independent algorithm, the previous Kriging functionality was removed. It is now replaced with :class:`.GaussianProcessRegression`. The functionality of the Gaussian is constructed using object composition, -and the specific implementation of :class:`.Regression` and :class:`.Kernel` abstract base classes. An additional +and the specific implementation of :class:`.Regression` and :class:`Kernel` abstract base classes. An additional functionality of constrained surrogates is added by implementing the :class:`.ConstraintsGPR` abstract class. The functionality of :class:`.PolynomialChaosExpansion` was rewritten from scratch to address some performance issues of v3. The Strategy Design pattern was used here as well, with three abstract base classes :class:`.Polynomials`,