https://mooseframework.inl.gov
nDRosenbrock.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 #pragma once
10 
12 
13 /* SOBOL test function, see Slaughter, Eq. 5.51 */
15 {
16 public:
19  virtual void execute() override;
20  virtual void initialize() override {}
21  virtual void finalize() override;
22 
23 protected:
25  const bool & _classify;
28 };
const InputParameters & parameters() const
const Real & _limiting_value
Definition: nDRosenbrock.h:26
Sampler & _sampler
Definition: nDRosenbrock.h:24
const bool & _classify
Definition: nDRosenbrock.h:25
static InputParameters validParams()
Definition: nDRosenbrock.C:16
VectorPostprocessorValue & _values
Definition: nDRosenbrock.h:27
std::vector< Real > VectorPostprocessorValue
virtual void execute() override
Definition: nDRosenbrock.C:36
virtual void finalize() override
Definition: nDRosenbrock.C:58
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
virtual void initialize() override
Definition: nDRosenbrock.h:20
nDRosenbrock(const InputParameters &parameters)
Definition: nDRosenbrock.C:26