1The global algorithm uses two criteria to check if a satisfying
2equilibrium has been found: one on strains, the other on stresses.
3
4This criterium on strains checks if two successives estimate of the
5strains are close enough.  By default, the criterium value used is
61.e-12;
7
8The `@StrainEpsilon` let the user specifiy the criterium value used
9for the criterium on strains.
10
11It is followed by the criterium value.
12
13## Example
14
15~~~~ {.cpp}
16@StrainEpsilon 1.e-12;
17~~~~~~~~
18