| 577 | /// |
| 578 | template<typename SCAL> |
| 579 | ParameterCoefficientFunction<SCAL> :: |
| 580 | ParameterCoefficientFunction(SCAL aval) |
| 581 | : CoefficientFunctionNoDerivative(1, std::is_same_v<SCAL, Complex>), val(aval) |
| 582 | { SetVariable(true); } |
| 583 | |
| 584 | template<typename SCAL> |
| 585 | ParameterCoefficientFunction<SCAL> :: |
nothing calls this directly
no test coverage detected