I want to define two classes whose members are nodes and they are the extent of several links.
In the first class, one of these links have a type Highway
, while in the second class none of them is a type Highway
.
I can make the first class using SWRL but the second one is not possible since there seems to be no negation for such an expression.
could I define them using General Class axioms?
something like:
Class1: Node and (in_extent_of some Arc and min one Arc is Highway)
Class2: Node and (in_extent_of some Arc and Arc not Highway)