From 5de72d8948c6c973d6bc89fe21daabaadd2836d1 Mon Sep 17 00:00:00 2001 From: ErinKuci <Erin.Kuci@ulg.ac.be> Date: Fri, 19 Oct 2018 19:55:42 +0200 Subject: [PATCH] fix verbosity of mma --- Ccore/shape.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ccore/shape.py b/Ccore/shape.py index 93d2d7d..8c75326 100644 --- a/Ccore/shape.py +++ b/Ccore/shape.py @@ -189,7 +189,7 @@ elif Optimizer=='mma': conveks.mma.initialize(initialPoint, lowerBound, upperBound) # Set some options for MMA - conveks.mma.option.setNumber('General.Verbosity', 4) + conveks.mma.option.setNumber('General.Verbosity', 0) # Get iteration count (here it will be 1 - could be different in case of restart) it = conveks.mma.getOuterIteration() -- GitLab