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

J2linear OK ??

mpi and QS
parent a8d02663
No related branches found
No related tags found
No related merge requests found
......@@ -227,6 +227,14 @@ class STensor3 {
{
return _val[getIndex(i, j)];
}
inline double operator[](int i) const
{
return _val[i];
}
inline double &operator[](int i)
{
return _val[i];
}
STensor3 invert () const
{
fullMatrix<double> m(3, 3);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment