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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The testcase:
String ns = "http://x#"; OntologyManager m = OntManagers.createONT(); OntologyModel o = m.createOntology(); OntGraphModel g = o.asGraphModel(); g.createOntClass(ns + "X").addSuperClass(g.createOntClass(ns + "Y")); g.write(System.out, "ttl"); o.axioms().forEach(System.out::println); List<RemoveAxiom> changes = o.axioms().map(x -> new RemoveAxiom(o, x)).collect(Collectors.toList()); m.applyChanges(changes); g.write(System.out, "ttl"); o.axioms().forEach(System.out::println);
The text was updated successfully, but these errors were encountered:
ont-api: add more tests on add/remove axioms (issue #5)
49e4bd7
1d81a9e
ont-api: OWLComponentType & InternalModel - additional fix #5 - misse…
adc63a4
…d changes in prev commit (1d81a9e)
ont-api: improve InternalModel#remove(..) -- related to issue #5
961257a
No branches or pull requests
The testcase:
The text was updated successfully, but these errors were encountered: