| 1089 | |
| 1090 | template <class SCAL> |
| 1091 | S_GridFunction<SCAL> :: |
| 1092 | S_GridFunction (shared_ptr<FESpace> afespace, const string & aname, const Flags & flags) |
| 1093 | : GridFunction (afespace, aname, flags) |
| 1094 | { |
| 1095 | vec.SetSize (this->multidim); |
| 1096 | vec = 0; |
| 1097 | |
| 1098 | if (this->visual) |
| 1099 | Visualize(this, this->name); |
| 1100 | } |
| 1101 | |
| 1102 | |
| 1103 | /* |