From: Jean-Philippe ARGAUD Date: Thu, 30 Sep 2021 12:28:06 +0000 (+0200) Subject: Minor corrections X-Git-Tag: V9_8_0a1~4 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=3cc1e145ff6c8818871a9f726aba8236ee93aca7;p=modules%2Fadao.git Minor corrections --- diff --git a/i18n/adao_en.qm b/i18n/adao_en.qm index a07e9a9..c9842f8 100644 Binary files a/i18n/adao_en.qm and b/i18n/adao_en.qm differ diff --git a/i18n/adao_en.ts b/i18n/adao_en.ts index a6443a4..5de60c9 100644 --- a/i18n/adao_en.ts +++ b/i18n/adao_en.ts @@ -1,22 +1,72 @@ - + + @default + ASSIMILATION_STUDY Data assimilation + OPTIMIZATION_STUDY Optimisation methods + REDUCTION_STUDY Methods with reduction + CHECKING_STUDY Verification + + + New case + New case + + + + Open a case + Open a case + + + + Save the case + Save the case + + + + Save the case as + Save the case as + + + + Validate the case + Validate the case + + + + Show tree + Show tree + + + + Export the case to TUI + Export the case to TUI + + + + Close the case + Close the case + + + + Export the case to YACS + Export the case to YACS + diff --git a/i18n/adao_fr.qm b/i18n/adao_fr.qm index 85a3ed0..91cfed2 100644 Binary files a/i18n/adao_fr.qm and b/i18n/adao_fr.qm differ diff --git a/i18n/adao_fr.ts b/i18n/adao_fr.ts index 2728ced..2c7d007 100644 --- a/i18n/adao_fr.ts +++ b/i18n/adao_fr.ts @@ -1,22 +1,72 @@ - + + @default + ASSIMILATION_STUDY - Assimilation de donnees + Assimilation de données + OPTIMIZATION_STUDY - Methodes d'optimisation + Méthodes d'optimisation + REDUCTION_STUDY - Methodes avec reduction + Méthodes avec réduction + CHECKING_STUDY - Verification + Vérification + + + + New case + Nouveau cas + + + + Open a case + Ouvrir un cas + + + + Save the case + Enregistrer le cas + + + + Save the case as + Enregistrer le cas sous + + + + Validate the case + Valider le cas + + + + Show tree + Montrer l'arbre + + + + Export the case to TUI + Exporter le cas en TUI + + + + Close the case + Fermer le cas + + + + Export the case to YACS + Exporter le cas en YACS diff --git a/src/daComposant/daAlgorithms/ParticleSwarmOptimization.py b/src/daComposant/daAlgorithms/ParticleSwarmOptimization.py index 9078e95..d995504 100644 --- a/src/daComposant/daAlgorithms/ParticleSwarmOptimization.py +++ b/src/daComposant/daAlgorithms/ParticleSwarmOptimization.py @@ -75,11 +75,13 @@ class ElementaryAlgorithm(BasicObjects.Algorithm): typecast = str, message = "Critère de qualité utilisé", listval = [ - "AugmentedWeightedLeastSquares","AWLS","DA", - "WeightedLeastSquares","WLS", - "LeastSquares","LS","L2", - "AbsoluteValue","L1", - "MaximumError","ME"], + "DA", + "AugmentedWeightedLeastSquares", "AWLS", + "WeightedLeastSquares", "WLS", + "LeastSquares", "LS", "L2", + "AbsoluteValue", "L1", + "MaximumError", "ME", + ], listadv = [ "AugmentedPonderatedLeastSquares","APLS", "PonderatedLeastSquares","PLS", diff --git a/src/daComposant/daAlgorithms/SamplingTest.py b/src/daComposant/daAlgorithms/SamplingTest.py index 279f789..e70b5ba 100644 --- a/src/daComposant/daAlgorithms/SamplingTest.py +++ b/src/daComposant/daAlgorithms/SamplingTest.py @@ -59,11 +59,18 @@ class ElementaryAlgorithm(BasicObjects.Algorithm): default = "AugmentedWeightedLeastSquares", typecast = str, message = "Critère de qualité utilisé", - listval = ["AugmentedWeightedLeastSquares","AWLS","AugmentedPonderatedLeastSquares","APLS","DA", - "WeightedLeastSquares","WLS","PonderatedLeastSquares","PLS", - "LeastSquares","LS","L2", - "AbsoluteValue","L1", - "MaximumError","ME"], + listval = [ + "DA", + "AugmentedWeightedLeastSquares", "AWLS", + "WeightedLeastSquares","WLS", + "LeastSquares", "LS", "L2", + "AbsoluteValue", "L1", + "MaximumError", "ME", + ], + listadv = [ + "AugmentedPonderatedLeastSquares", "APLS", + "PonderatedLeastSquares", "PLS", + ], ) self.defineRequiredParameter( name = "SetDebug",