Has there been any discussion about handling &quot;just&quot; in Attempto:<br>i.e.:<br><br>Every American has just one President.<br><br>It seems to be a way to differentiate between<br><br>Every American has one mother.<br>

and<br>Every American has one President.<br><br>I guess other examples would be<br><br>The team has just one leader<br>Each organization has just one headquarters.<br><br><br>Best Regards,<br>Dave<br><br><div class="gmail_quote">
On Mon, Mar 30, 2009 at 9:25 AM, Kaarel Kaljurand <span dir="ltr">&lt;<a href="mailto:kaljurand@gmail.com">kaljurand@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi,<br>
<br>
just to add to this that the ACE-&gt;OWL mapping treats &quot;eq&quot; and &quot;geq&quot;<br>
as equivalent, and &quot;exactly&quot; is different from both of them, see the<br>
source of drs_to_owlswrl.pl:<br>
<br>
make_restr(eq, 1, Property, Class, &#39;ObjectSomeValuesFrom&#39;(Property, Class)).<br>
make_restr(geq, 1, Property, Class, &#39;ObjectSomeValuesFrom&#39;(Property, Class)).<br>
make_restr(eq, QNum, Property, Class, &#39;ObjectMinCardinality&#39;(QNum,<br>
Property, Class)) :-<br>
    integer(QNum),<br>
    QNum &gt; 1.<br>
make_restr(geq, QNum, Property, Class, &#39;ObjectMinCardinality&#39;(QNum,<br>
Property, Class)) :-<br>
    integer(QNum),<br>
    QNum &gt; 1.<br>
make_restr(exactly, QNum, Property, Class,<br>
&#39;ObjectExactCardinality&#39;(QNum, Property, Class)) :-<br>
    integer(QNum).<br>
<br>
So, the following sentences are equivalent as far as the ACE-&gt;OWL<br>
mapping is concerned:<br>
<br>
(1) Every man owns a car.<br>
(2) Every man owns at least one car.<br>
<br>
--<br>
<font color="#888888">kaarel<br>
</font><div><div></div><div class="h5">_______________________________________________<br>
attempto mailing list<br>
<a href="mailto:attempto@lists.ifi.uzh.ch">attempto@lists.ifi.uzh.ch</a><br>
<a href="https://lists.ifi.uzh.ch/listinfo/attempto" target="_blank">https://lists.ifi.uzh.ch/listinfo/attempto</a><br>
</div></div></blockquote></div><br>