mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-15 10:08:34 +05:00
0021942: [CEA 700] Behavior of the Mesh.Triangle(algo=smesh.NETGEN) command
In Compute(), report on hiding algo
This commit is contained in:
parent
0e8ed41adb
commit
b0362f7109
@ -1225,9 +1225,13 @@ class Mesh:
|
||||
elif err.state == HYP_BAD_GEOMETRY:
|
||||
reason = ('%s %sD algorithm "%s" is assigned to mismatching'
|
||||
'geometry' % ( glob, dim, name ))
|
||||
elif err.state == HYP_HIDDEN_ALGO:
|
||||
reason = ('%s %sD algorithm "%s" is ignored due to presence of a %s '
|
||||
'algorithm of upper dimension generating %sD mesh'
|
||||
% ( glob, dim, name, glob, dim ))
|
||||
else:
|
||||
reason = "For unknown reason."+\
|
||||
" Revise Mesh.Compute() implementation in smeshDC.py!"
|
||||
reason = ("For unknown reason. "
|
||||
"Developer, revise Mesh.Compute() implementation in smeshDC.py!")
|
||||
pass
|
||||
if allReasons != "":allReasons += "\n"
|
||||
allReasons += "- " + reason
|
||||
|
Loading…
Reference in New Issue
Block a user