| 1215 | |
| 1216 | |
| 1217 | GridFunctionCoefficientFunction :: |
| 1218 | GridFunctionCoefficientFunction (shared_ptr<GridFunction> agf, int acomp) |
| 1219 | : CoefficientFunctionNoDerivative(1, agf->GetFESpace()->IsComplex()), |
| 1220 | gf_shared_ptr(agf), gf(agf.get()), comp (acomp) |
| 1221 | { |
| 1222 | fes = gf->GetFESpace(); |
| 1223 | SetDimensions (gf->Dimensions()); |
| 1224 | |
| 1225 | for (auto vb : { VOL, BND, BBND, BBBND }) |
| 1226 | diffop[vb] = gf->GetFESpace()->GetEvaluator(vb); |
| 1227 | |
| 1228 | SetVariable(true); |
| 1229 | } |
| 1230 | |
| 1231 | GridFunctionCoefficientFunction :: |
| 1232 | GridFunctionCoefficientFunction (shared_ptr<DifferentialOperator> adiffop, |
nothing calls this directly
no test coverage detected