I'm trying to obtain to model a property that is transitive, asymmetric and irreflexive. I understand that OWL reasoning does not support for this complex relationship.
However, is there a way to "trick" the reasoner? I want to use this for validation purposes, so I'm also trying SWRL rules (1), but the rule does not work (which makes sense, is the same reasoner).
(1) isBaseFor(?y1, ?y2) ^ isBaseFor(?y2, ?y3) -> isBaseFor(?y2, ?y3)
I'm thinking of using SQWRL, however this is a validation similar to SHACL or SPARQL (meaning that I have to run the validaton query separatly, which I'm trying to avoid).
Any ideas?