Skip to content

Commit

Permalink
Removing exit call
Browse files Browse the repository at this point in the history
  • Loading branch information
mhscott committed Oct 23, 2021
1 parent 7ca33e4 commit 4460da4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion SRC/material/uniaxial/SteelBRB.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,8 @@ double SteelBRB::Newton_BRB(double CStress, double beta, double CPlastStrain, d

if (fabs(F)>Tol){
opserr<< "Fatal error: SteelBRB::Newton_BRB does not converge ===============\n";
exit(-1);
//exit(-1);
return 0.0;
}

return x0;
Expand Down

0 comments on commit 4460da4

Please sign in to comment.