From: PASCALE NOYRET Date: Wed, 1 Jun 2022 09:48:59 +0000 (+0200) Subject: correction bug si 1 variable proba unique X-Git-Tag: merge_uncertainty_odysee_1210~68 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=4776128e18d02496d2130f6a2f7494d63ab8b72d;p=tools%2Feficas.git correction bug si 1 variable proba unique --- diff --git a/convert/convert_UQPython.py b/convert/convert_UQPython.py index 69237b55..974512cd 100644 --- a/convert/convert_UQPython.py +++ b/convert/convert_UQPython.py @@ -63,8 +63,8 @@ class pythonUQParser(Pythonparser): if debug : print(mcCherche, mcFils) mcCherche=mcCherche.getChildOrChildInBloc(mcFils) if debug : print(mcCherche, mcFils) - mc.variableDeterministe=mcCherche - mcCherche.variableProbabiliste=mc + if mc.nature=='MCFACT' : mc.variableDeterministe=mcCherche + else : mcCherche[0].variableProbabiliste=mc mcCherche.definition.siValide = mcCherche.changeValeursRefUQ itemConsigne=mc.getChild('Consigne') itemConsigne.setValeur('la valeur entrée pour {} est {}'.format(mcCherche.nom, mcCherche.valeur))