Hello everyone, I'm reaching out because the script I wrote to validate IFC files against IDS requirements is performing quite slowly. Even with relatively small IFC files (around 20 MB), the validation process can take up to 20 minutes. The function that required most of the processing time is: specs.validate(model) Below is my code for reference: import sys import os import glob import time import ifcopenshell import ifctester from ifctester import ids, reporter def main(): if len(sys.argv) !=...