Hi,
I have a problem with inverse properties.
The problem is that the inverse property does not appear in owl file. In the owlready2 the inverse property and the direct property appear correctly (automatic way).
instance1 -> objectproperty1 -> instance2instance2 -> objectproerty2(inverse_property) -> instance1I want that instance2 has instance1:
instance2 -> objectproperty2 -> instance1instance1 -> objectproperty1(inverser_property) -> instance2i printed this:
onto.objectproperty1.get_relations()
[(Onto.instance1, Onto.Instance2)]but with the objectproperty2 i have this:
onto.objectproperty2.get_relations()
[]what should i do ?