-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Decouple the following operations that the parser was responsible for: get the graph of the ontology, put the ontology in the namespace registry. * Modify the unit tests to accommodate the new changes. * Make the `Ontology` class directly accesible from the `ontology` module.
- Loading branch information
Showing
33 changed files
with
1,578 additions
and
1,400 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
from osp.core.ontology.installation import OntologyInstallationManager | ||
from osp.core.ontology.parser.parser import Parser | ||
from osp.core.ontology.oclass import OntologyClass | ||
from osp.core.ontology.ontology import Ontology | ||
from osp.core.ontology.attribute import OntologyAttribute | ||
from osp.core.ontology.entity import OntologyEntity | ||
from osp.core.ontology.relationship import OntologyRelationship | ||
from osp.core.ontology.attribute import OntologyAttribute | ||
from osp.core.ontology.parser import Parser | ||
from osp.core.ontology.installation import OntologyInstallationManager | ||
from osp.core.ontology.oclass_composition import Composition | ||
from osp.core.ontology.oclass_restriction import Restriction |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.