From bdcf8f151aff76aafe97a377fd978fdea36a51fa Mon Sep 17 00:00:00 2001 From: cconopoima Date: Mon, 15 Jan 2024 10:21:12 +0000 Subject: [PATCH] [bos #40505][CEA] Allow assign of 3D Tetra paramam on imported 2D mesh. --- src/SMESH/SMESH_subMesh.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/SMESH/SMESH_subMesh.cxx b/src/SMESH/SMESH_subMesh.cxx index fd9da1f0f..18b6c3cdf 100644 --- a/src/SMESH/SMESH_subMesh.cxx +++ b/src/SMESH/SMESH_subMesh.cxx @@ -891,7 +891,10 @@ SMESH_Hypothesis::Hypothesis_Status ret = SMESH_Hypothesis::HYP_INCOMPATIBLE; } else if (!_father->IsUsedHypothesis( anHyp, this )) - ret = SMESH_Hypothesis::HYP_INCOMPATIBLE; + { + if ( anHyp->GetDim() == this->GetAlgo()->GetDim() ) + ret = SMESH_Hypothesis::HYP_INCOMPATIBLE; + } if (SMESH_Hypothesis::IsStatusFatal( ret )) { -- 2.39.2