14#include "arcane/utils/ArcanePrecomp.h"
16#include "arcane/utils/NotImplementedException.h"
17#include "arcane/utils/TraceInfo.h"
18#include "arcane/utils/Real3.h"
19#include "arcane/StandardCaseFunction.h"
39~StandardCaseFunction()
46void StandardCaseFunction::
47value(Real param,Real& v)
const
51 throw NotImplementedException(A_FUNCINFO);
57void StandardCaseFunction::
58value(Real param,Integer& v)
const
62 throw NotImplementedException(A_FUNCINFO);
68void StandardCaseFunction::
69value(Real param,
bool& v)
const
73 throw NotImplementedException(A_FUNCINFO);
79void StandardCaseFunction::
80value(Real param,String& v)
const
84 throw NotImplementedException(A_FUNCINFO);
90void StandardCaseFunction::
91value(Real param,Real3& v)
const
95 throw NotImplementedException(A_FUNCINFO);
101void StandardCaseFunction::
102value(Integer param,Real& v)
const
104 ARCANE_UNUSED(param);
106 throw NotImplementedException(A_FUNCINFO);
112void StandardCaseFunction::
113value(Integer param,Integer& v)
const
115 ARCANE_UNUSED(param);
117 throw NotImplementedException(A_FUNCINFO);
123void StandardCaseFunction::
124value(Integer param,
bool& v)
const
126 ARCANE_UNUSED(param);
128 throw NotImplementedException(A_FUNCINFO);
134void StandardCaseFunction::
135value(Integer param,String& v)
const
137 ARCANE_UNUSED(param);
139 throw NotImplementedException(A_FUNCINFO);
145void StandardCaseFunction::
146value(Integer param,Real3& v)
const
148 ARCANE_UNUSED(param);
150 throw NotImplementedException(A_FUNCINFO);
156IBinaryMathFunctor<Real,Real,Real>* StandardCaseFunction::
157getFunctorRealRealToReal()
165IBinaryMathFunctor<Real,Real3,Real>* StandardCaseFunction::
166getFunctorRealReal3ToReal()
174IBinaryMathFunctor<Real,Real,Real3>* StandardCaseFunction::
175getFunctorRealRealToReal3()
183IBinaryMathFunctor<Real,Real3,Real3>* StandardCaseFunction::
184getFunctorRealReal3ToReal3()
Informations pour construire une instance de CaseFunction.