Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
tdegeus committed Feb 14, 2021
1 parent 4e91655 commit 8b40b66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/FrictionQPotFEM/UniformSingleLayer2d.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1256,9 +1256,9 @@ inline void LocalTriggerFineLayerFull::setState(
}

auto idx = xt::argmin(W)();
m_smin(e, q) = S[idx];
m_pmin(e, q) = P[idx];
m_Wmin(e, q) = W[idx];
m_smin(e, q) = S.data()[idx];
m_pmin(e, q) = P.data()[idx];
m_Wmin(e, q) = W.data()[idx];
}
}
}
Expand Down

0 comments on commit 8b40b66

Please sign in to comment.