print "-------------------------- NumberOfSegments"
- hypNbSeg3 = smesh.CreateHypothesis("NumberOfSegments", "libStdMeshersEngine.so")
+ hypNbSeg3 = smesh.CreateHypothesis("NumberOfSegments", "StdMeshersEngine")
hypNbSeg3.SetNumberOfSegments(3)
print hypNbSeg3.GetName()
print hypNbSeg3.GetId()
print "-------------------------- LocalLength"
- hypLen1 = smesh.CreateHypothesis("LocalLength", "libStdMeshersEngine.so")
+ hypLen1 = smesh.CreateHypothesis("LocalLength", "StdMeshersEngine")
hypLen1.SetLength(10)
print hypLen1.GetName()
print hypLen1.GetId()
print "-------------------------- Propagation"
- hypProp = smesh.CreateHypothesis("Propagation", "libStdMeshersEngine.so")
+ hypProp = smesh.CreateHypothesis("Propagation", "StdMeshersEngine")
print hypProp.GetName()
print hypProp.GetId()
#print "-------------------------- NumberOfSegments"
#
- #hypNbSeg15 = smesh.CreateHypothesis("NumberOfSegments", "libStdMeshersEngine.so")
+ #hypNbSeg15 = smesh.CreateHypothesis("NumberOfSegments", "StdMeshersEngine")
#hypNbSeg15.SetNumberOfSegments(15)
#print hypNbSeg15.GetName()
#print hypNbSeg15.GetId()
print "-------------------------- Regular_1D"
- algoReg = smesh.CreateHypothesis("Regular_1D", "libStdMeshersEngine.so")
+ algoReg = smesh.CreateHypothesis("Regular_1D", "StdMeshersEngine")
listHyp = algoReg.GetCompatibleHypothesis()
for hyp in listHyp:
print hyp
print "-------------------------- Quadrangle_2D"
- algoQuad = smesh.CreateHypothesis("Quadrangle_2D", "libStdMeshersEngine.so")
+ algoQuad = smesh.CreateHypothesis("Quadrangle_2D", "StdMeshersEngine")
listHyp = algoQuad.GetCompatibleHypothesis()
for hyp in listHyp:
print hyp