| 66 | |
| 67 | |
| 68 | void GridFunctionCoefficientFunction :: DoArchive(Archive& ar) |
| 69 | { |
| 70 | CoefficientFunctionNoDerivative::DoArchive(ar); |
| 71 | ar.Shallow(gf_shared_ptr); |
| 72 | ar.Shallow(gf); |
| 73 | ar.Shallow(fes); |
| 74 | for (auto i : Range(4)) |
| 75 | ar & diffop[i]; |
| 76 | ar & comp; |
| 77 | } |
| 78 | |
| 79 | GridFunction :: GridFunction (shared_ptr<FESpace> afespace, const string & aname, |
| 80 | const Flags & aflags) |