https://mooseframework.inl.gov
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 {
20 public:
22 
23  CovarianceInterface(const InputParameters & parameters);
24 
25 protected:
27  CovarianceFunctionBase * getCovarianceFunctionByName(const UserObjectName & name) const;
28 
29 private:
32 };
33 
34 #endif
Base class for covariance functions that are used in Gaussian Processes.
const std::string name
Definition: Setup.h:21
static InputParameters validParams()
CovarianceInterface(const InputParameters &parameters)
FEProblemBase & _covar_feproblem
Reference to FEProblemBase instance.
CovarianceFunctionBase * getCovarianceFunctionByName(const UserObjectName &name) const
Lookup a CovarianceFunction object by name and return pointer.