Skip to content
New issue

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

Change default of base_merge_drop_equivalent_class_axioms #1020

Merged
merged 1 commit into from
Mar 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions odk/odk.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,8 +335,8 @@ class ImportGroup(ProductGroup):
use_base_merging: bool = False
"""If set to true, mirrors will be merged before determining a suitable seed. This can be a quite costly process."""

base_merge_drop_equivalent_class_axioms: bool = True
"""If set to true, equivalent class axioms will be removed before extracting a module with the base-merging process."""
base_merge_drop_equivalent_class_axioms: bool = False
"""If set to true, equivalent class axioms will be removed before extracting a module with the base-merging process. Do not activate this feature unless you are positive that your base merging process only leverages true base files, with asserted subclass axioms."""

exclude_iri_patterns: Optional[List[str]] = None
"""List of IRI patterns. If set, IRIs matching and IRI pattern will be removed from the import."""
Expand Down
Loading