From 8216ff4eba3173fe7c7cde1e3de6582f3c08c7b0 Mon Sep 17 00:00:00 2001 From: Anthony <anthony.schrapffer@polytechnique.fr> Date: Wed, 15 Apr 2020 16:32:53 +0200 Subject: [PATCH] Give a default value for parameter numop --- RoutingPreProc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RoutingPreProc.py b/RoutingPreProc.py index 385ea9c..dd8a0df 100644 --- a/RoutingPreProc.py +++ b/RoutingPreProc.py @@ -16,7 +16,7 @@ import time # Gert the information from the configuration file. # import configparser -config=configparser.ConfigParser({'SaveWeights':'true', "DiagLon":"0.0, 0.0", "DiagLat":"0.0, 0.0"}) +config=configparser.ConfigParser({'SaveWeights':'true', "DiagLon":"0.0, 0.0", "DiagLat":"0.0, 0.0", "numop" : 100}) config.read("run.def") saveweights=config.get("OverAll", "SaveWeights") nbasmax=int(config.getfloat("OverAll", "nbasmax")) -- GitLab