Return a list of available quantification rule names.
()
| 9 | |
| 10 | |
| 11 | def list_rules() -> list[dict[str, str]]: |
| 12 | """Return a list of available quantification rule names.""" |
| 13 | return [{"name": name} for name in AVAILABLE_RULES] |
| 14 | |
| 15 | |
| 16 | def run_quantify(model: ifcopenshell.file, rule: str, selector: str | None = None) -> dict[str, Any]: |
no outgoing calls