From 0412d863d144344b4c6c04b22209c0c57f1d6fb8 Mon Sep 17 00:00:00 2001 From: Laurent Balland-Poirier Date: Wed, 30 Nov 2016 21:50:06 +0100 Subject: tdf#104268 NLPSolver: Improve display of solution Format "%.2f" is not optimal for large or small values. Format "%g" should be prefered. Change-Id: I92899d80564b9000b1f3e049221c456f8e1176a9 Reviewed-on: https://gerrit.libreoffice.org/31445 Tested-by: Jenkins Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- .../star/comp/Calc/NLPSolver/dialogs/EvolutionarySolverStatusUno.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nlpsolver/src/com') diff --git a/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver/dialogs/EvolutionarySolverStatusUno.java b/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver/dialogs/EvolutionarySolverStatusUno.java index da8dbb22e997..e3695a0c7950 100644 --- a/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver/dialogs/EvolutionarySolverStatusUno.java +++ b/nlpsolver/src/com/sun/star/comp/Calc/NLPSolver/dialogs/EvolutionarySolverStatusUno.java @@ -177,7 +177,7 @@ public class EvolutionarySolverStatusUno extends BaseDialog } public void setBestSolution(double solution, boolean feasible) { - lblSolutionValue.setLabel(String.format("%.2f", solution)); + lblSolutionValue.setLabel(String.format("%g", solution)); if (feasible) lblSolutionValue.setTextColor(defaultTextColor); else -- cgit