https://mooseframework.inl.gov
Loading...
Searching...
No Matches
CovarianceInterface.h
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9#ifdef MOOSE_LIBTORCH_ENABLED
10
11#pragma once
12
13#include "InputParameters.h"
14#include "FEProblemBase.h"
15
17
19{
20public:
22
23 CovarianceInterface(const InputParameters & parameters);
24
25protected:
27 CovarianceFunctionBase * getCovarianceFunctionByName(const UserObjectName & name) const;
28
29private:
32};
33
34#endif
const std::string name
Definition Setup.h:21
Base class for covariance functions that are used in Gaussian Processes.
CovarianceFunctionBase * getCovarianceFunctionByName(const UserObjectName &name) const
Lookup a CovarianceFunction object by name and return pointer.
static InputParameters validParams()
FEProblemBase & _covar_feproblem
Reference to FEProblemBase instance.