We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bSI-545 IfcTendonConduit.PredefinedType optional
The text was updated successfully, but these errors were encountered:
--- tmp/a/IFC.exp 2023-06-19 20:49:01.863552300 +0200 +++ tmp/b/IFC.exp 2023-06-21 13:28:55.225174900 +0200 @@ -11521,23 +11521,24 @@ ENTITY IfcTendonAnchorType SUBTYPE OF (IfcReinforcingElementType); PredefinedType : IfcTendonAnchorTypeEnum; WHERE CorrectPredefinedType : (PredefinedType <> IfcTendonAnchorTypeEnum.USERDEFINED) OR ((PredefinedType = IfcTendonAnchorTypeEnum.USERDEFINED) AND EXISTS (SELF\IfcElementType.ElementType)); END_ENTITY; ENTITY IfcTendonConduit SUBTYPE OF (IfcReinforcingElement); - PredefinedType : IfcTendonConduitTypeEnum; + PredefinedType : OPTIONAL IfcTendonConduitTypeEnum; WHERE - CorrectPredefinedType : (PredefinedType <> IfcTendonConduitTypeEnum.USERDEFINED) OR + CorrectPredefinedType : NOT(EXISTS(PredefinedType)) OR + (PredefinedType <> IfcTendonConduitTypeEnum.USERDEFINED) OR ((PredefinedType = IfcTendonConduitTypeEnum.USERDEFINED) AND EXISTS (SELF\IfcObject.ObjectType)); CorrectTypeAssigned : (SIZEOF(IsTypedBy) = 0) OR ('IFC4X3_DEV.IFCTENDONCONDUITTYPE' IN TYPEOF(SELF\IfcObject.IsTypedBy[1].RelatingType)); END_ENTITY; ENTITY IfcTendonConduitType SUBTYPE OF (IfcReinforcingElementType); PredefinedType : IfcTendonConduitTypeEnum; WHERE CorrectPredefinedType : (PredefinedType <> IfcTendonConduitTypeEnum.USERDEFINED) OR
Sorry, something went wrong.
No branches or pull requests
bSI-545 IfcTendonConduit.PredefinedType optional
The text was updated successfully, but these errors were encountered: