https://mooseframework.inl.gov
Loading...
Searching...
No Matches
MutableCoefficientsFunctionInterface.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
10#pragma once
11
12#include "FunctionInterface.h"
13
16
21 protected FunctionInterface,
23{
24public:
26
29
30protected:
31 // Override from MemoizedFunctionInterface
32 virtual void coefficientsChanged() override;
33};
Implementation of Function that memoizes (caches) former evaluations in an unordered map using a hash...
const InputParameters & parameters() const
Interface for a type of functions using coefficients that may be changed before or after a solve.
virtual void coefficientsChanged() override
Called when the coefficients have been changed.
This class is designed to provide a uniform interface for any class that uses an array of coefficient...