| Melhor solução | {% load dashboard_extras %}{{ task.result.best_solution|listformat:3 }} |
|---|
| Melhor valor | {% with t=task.result.best_value|stringformat:'.3e' %}{{ t|replace:'.|,' }} | {% endwith %}
|---|---|
| Pior valor | {% with t=task.result.max_value|stringformat:'.3e' %}{{ t|replace:'.|,' }} | {% endwith %}
| Valor médio | {% with t=task.result.avg_value|stringformat:'.3e' %}{{ t|replace:'.|,' }} | {% endwith %}
| Desvio padrão | {% with t=task.result.stdev_value|stringformat:'.3e' %}{{ t|replace:'.|,' }} | {% endwith %}
| Solução ótima | {{ optimal.solution|listformat:3 }} |
|---|---|
| Valor ótimo da função | {% with t=optimal.value|stringformat:'.3e' %}{{ t|replace:'.|,' }} | {% endwith %}