FreeFem / FreeFem-sources

FreeFEM source code
https://freefem.org/
Other
746 stars 188 forks source link

Suppress cout when verbosity == 0 #259

Closed cmd8 closed 1 year ago

cmd8 commented 1 year ago

I'm not sure what the desired functionality here is, should this be (verbosity>5 && ! iseuil) or simply (verbosity>5)?

prj- commented 1 year ago

Generally speaking, there should be no output with verbosity = 0, so your change makes perfect sense. Thanks.