Skip to content

Commit

Permalink
GaussianProcess: Deprecated GIBBS enum value
Browse files Browse the repository at this point in the history
  • Loading branch information
jschueller committed Oct 5, 2022
1 parent ec82f23 commit 9ee541b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
* Deprecated IterativeMoments::getCenteredMoments in favor of getCentralMoments
* Deprecated GeneralLinearModelAlgorithm | KrigingAlgorithm ctors using collection of basis
* Deprecated Drawable.draw|clean & Graph.draw|clean|getRCommand methods for legacy R graphs
* Deprecated GaussianProcess.GIBBS in favor of GaussianProcess.GALLIGAOGIBBS

=== Documentation ===
* Added example galleries at the end of API doc pages
Expand Down
1 change: 1 addition & 0 deletions TODO
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ Remove Distribution::getCenteredMoment
Remove IterativeMoments::getCenteredMoments
Drop deprecated GeneralLinearModelAlgorithm | KrigingAlgorithm ctors for 1.21
Drop deprecated Drawable.draw|clean & Graph.draw|clean|getRCommand|makeR*|GetExtensionMap methods
Drop deprecated GaussianProcess.GIBBS
3 changes: 2 additions & 1 deletion lib/src/Uncertainty/Process/openturns/GaussianProcess.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ public:
void setTimeGrid(const RegularGrid & timeGrid) override;

/** Set sampling method accessor */
enum SamplingMethod { CHOLESKY, HMAT, GALLIGAOGIBBS };
enum SamplingMethod { CHOLESKY, HMAT, GALLIGAOGIBBS,
GIBBS=2 }; // @deprecated
SamplingMethod getSamplingMethod() const;
void setSamplingMethod(const SamplingMethod samplingMethod);

Expand Down

0 comments on commit 9ee541b

Please sign in to comment.