]> SALOME platform Git repositories - modules/adao.git/commitdiff
Salome HOME
Documentation corrections and check improvement
authorJean-Philippe ARGAUD <jean-philippe.argaud@edf.fr>
Sun, 5 Mar 2017 11:53:40 +0000 (12:53 +0100)
committerJean-Philippe ARGAUD <jean-philippe.argaud@edf.fr>
Sun, 5 Mar 2017 11:53:40 +0000 (12:53 +0100)
doc/en/tui.rst
doc/fr/tui.rst
src/daComposant/daCore/BasicObjects.py
src/daSalome/daYacsIntegration/daOptimizerLoop.py

index df82a5fc611bc17227b1abbc81fb1c764776dda7..6aa00b9cf5577968fb21335b2ecb972cc96b3dae 100644 (file)
@@ -635,12 +635,15 @@ The command set execution gives the following result::
 As it should be in twin experiments, it is found that we get correctly the
 parameters that were used to artificially build the observations.
 
-.. Réconciliation de courbes à l'aide de MedCoupling
+.. Reconciliation de courbes a l'aide de MedCoupling
 .. +++++++++++++++++++++++++++++++++++++++++++++++++
 
 .. Utilisation de fonctions de surveillance de type "observer"
 .. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 
+.. Equivalences entre l'interface graphique (GUI) et l'interface textuelle (TUI)
+.. -----------------------------------------------------------------------------
+
 .. [HOMARD] For more information on HOMARD, see the *HOMARD module* and its integrated help available from the main menu *Help* of the SALOME platform.
 
 .. [PARAVIS] For more information on PARAVIS, see the *PARAVIS module* and its integrated help available from the main menu *Help* of the SALOME platform.
index 1684f61099be91d3be3d5271c977821168f67b1a..fae2554a192003a09e35854fd749c6b4c04054aa 100644 (file)
@@ -674,6 +674,9 @@ param
 .. Utilisation de fonctions de surveillance de type "observer"
 .. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 
+.. Equivalences entre l'interface graphique (GUI) et l'interface textuelle (TUI)
+.. -----------------------------------------------------------------------------
+
 .. [HOMARD] Pour de plus amples informations sur HOMARD, voir le *module HOMARD* et son aide intégrée disponible dans le menu principal *Aide* de l'environnement SALOME.
 
 .. [PARAVIS] Pour de plus amples informations sur PARAVIS, voir le *module PARAVIS* et son aide intégrée disponible dans le menu principal *Aide* de l'environnement SALOME.
index 300e31617925e29e874edea2748d1a947c477fb5..d5a55d05cbe9ac2255a0e4492c82c6926aa094b2 100644 (file)
@@ -582,6 +582,8 @@ class Covariance(object):
         self.__is_matrix  = False
         self.__is_object  = False
         if asEyeByScalar is not None:
+            if numpy.matrix(asEyeByScalar).size != 1:
+                raise ValueError('  The diagonal multiplier given to define a sparse matrix is not a unique scalar value.\n  Its actual measured size is %i. Please check your scalar input.'%numpy.matrix(asEyeByScalar).size)
             self.__is_scalar = True
             self.__C         = numpy.abs( float(asEyeByScalar) )
             self.shape       = (0,0)
index 362eb9e1da8d390e9bd08a1b30c7756e9eff86f7..6a4d5286d59fb86253c2165493cc7707b0a98540 100644 (file)
@@ -274,7 +274,7 @@ class AssimilationAlgorithm_asynch(SALOMERuntime.OptimizerAlgASync):
     self.tout     = self.runtime.getTypeCode("SALOME_TYPES/ParametricOutput")
     self.pyobject = self.runtime.getTypeCode("pyobj")
 
-    # Absolument indispensable de définir ainsi "self.optim_hooks"
+    # Absolument indispensable de definir ainsi "self.optim_hooks"
     # (sinon on a une "Unknown Exception" sur l'attribut "finish")
     self.optim_hooks = OptimizerHooks(self)