Open RdR1024 opened 4 years ago
Currently, translate_IRIs/1 seems to duplicate axioms. A fix is to change the end of the code from
assert_axiom(A2), forall(member(O,Os), assert_axiom(A2,O)))).
to the following
( Os=[] -> assert_axiom(A2) ; forall(member(O,Os), assert_axiom(A2,O)) ) )).
Currently, translate_IRIs/1 seems to duplicate axioms. A fix is to change the end of the code from
to the following