Skip to content
Snippets Groups Projects
Commit 27845ccb authored by Elias Pipping's avatar Elias Pipping Committed by pipping
Browse files

Remove superfluous parens

[[Imported from SVN: r12870]]
parent b32e81d5
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@ class ViscosityAssembler
SymmetricTensor<dim> strainToStress(const SymmetricTensor<dim>& strain) const {
SymmetricTensor<dim> stress = strain;
stress *= 2*(muShear_);
stress *= 2*muShear_;
stress.addToDiag((muBulk_-(2.0/3.0)*muShear_) * strain.trace());
return stress;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment