Administrator
|
Hello,
You cannot have 2 individuals with the same IRI (same name in the same ontology).
If you have two distinct individuals (named c but in two distinct ontologies), you should use destroy_entity().
If you have a single individual c that belongs to two classes A and B, you can remove its relation to class A as follows:
c.is_a.remove(A)
Jiba
|