| 18 | namespace |
| 19 | { |
| 20 | void WarnDeprecated(const string & oldname, const string & replacement) |
| 21 | { |
| 22 | string message = oldname + " is deprecated; use " + replacement + " instead."; |
| 23 | py::warnings::warn(message.c_str(), PyExc_FutureWarning, 1); |
| 24 | } |
| 25 | |
| 26 | template <class KernelReal, class KernelComplex> |
| 27 | shared_ptr<BasePotentialOperator> |
no outgoing calls
no test coverage detected