Skip to content
Snippets Groups Projects
Commit 4b3328d3 authored by Gauthier Becker's avatar Gauthier Becker
Browse files

Implement missing restart method for dG3D and msch IPVariables

parent 08279166
No related branches found
No related tags found
No related merge requests found
......@@ -102,6 +102,9 @@ class STensor33 {
return *this;
}*/
void print(const char *) const;
const double* data() const{return _val;}
double* data() {return _val;}
};
// tensor product
......
......@@ -153,6 +153,8 @@ class STensor43 {
return *this;
}*/
void print(const char *) const;
const double* data() const {return _val;}
double* data() {return _val;}
};
// tensor product
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment