# What the values in output mean?

**URL:** https://community.freefem.org/t/what-the-values-in-output-mean/1260
**Category:** General Discussion
**Created:** [October 17, 2021, 2:36pm UTC](https://community.freefem.org/t/what-the-values-in-output-mean/1260 "2021-10-17T14:36:13Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Jhon](https://avatars.discourse-cdn.com/v4/letter/j/87869e/32.png) [@Jhon](https://community.freefem.org/u/Jhon)
#### Post date: [October 17, 2021, 2:36pm UTC](https://community.freefem.org/t/what-the-values-in-output-mean/1260/1 "2021-10-17T14:36:13Z")

</div>

I write a script to simulate stress and deformation.  
The “problem” command is used in this script.  
It is successful to perform the script by command line:  
“FreeFem++ scriptname.edp”

But I can not understand the output information:  
two minimum and two maximum number is printed on screen.

Are they calculation errors of variable?  
Where could I find the calculation error of the variables?

Thanks for everyone’s help!

---

<div class="post-metadata">

### Author: ![prj](https://avatars.discourse-cdn.com/v4/letter/p/ecae2f/32.png) [@prj](https://community.freefem.org/u/prj)
#### Post date: [October 17, 2021, 3:25pm UTC](https://community.freefem.org/t/what-the-values-in-output-mean/1260/2 "2021-10-17T15:25:23Z")

</div>

No, it’s just the minimum and the maximum of the solution. You can remove them with the additional command-line argument `-v 0` when you launch your script (or `verbosity = 0;` directly in your .edp).

---

<div class="post-metadata">

### Author: ![Jhon](https://avatars.discourse-cdn.com/v4/letter/j/87869e/32.png) [@Jhon](https://community.freefem.org/u/Jhon)
#### Post date: [October 18, 2021, 1:24pm UTC](https://community.freefem.org/t/what-the-values-in-output-mean/1260/3 "2021-10-18T13:24:17Z")

</div>

Thanks for your help!
