remove atan2 (WG17 UD #175)

This commit is contained in:
Vitor Santos Costa 2010-08-04 22:09:08 +01:00
parent 0449bf1e7f
commit 7bf8187bba
4 changed files with 8 additions and 8 deletions

View File

@ -965,7 +965,6 @@ static InitBinEntry InitBinTab[] = {
{"\\/", op_or}, {"\\/", op_or},
{"#", op_xor}, {"#", op_xor},
{"><", op_xor}, {"><", op_xor},
{"atan", op_atan2},
{"atan2", op_atan2}, {"atan2", op_atan2},
/* C-Prolog exponentiation */ /* C-Prolog exponentiation */
{"^", op_power}, {"^", op_power},

View File

@ -17,7 +17,11 @@
<h2>Yap-6.0.7:</h2> <h2>Yap-6.0.7:</h2>
<ul> <ul>
<li> FIXED: nothing yet.</li> <li> DELETE: atan/2 arithmetic function, use atan2/2 instead (WG17).</li>
<li> FIXED: compilation in Solaris was broken because of conflict in
declaration of gethostname.</li>
<li> FIXED: acyclic_term/1 is now built-in (WG17).</li>
<li> NEW: subsumes_term/2 (WG17).</li>
</ul> </ul>
<h2>Yap-6.0.6:</h2> <h2>Yap-6.0.6:</h2>

View File

@ -3932,11 +3932,8 @@ Arc cosine.
@item atan(@var{X}) [ISO] @item atan(@var{X}) [ISO]
Arc tangent. Arc tangent.
@item atan(@var{X},@var{Y})
Four-quadrant arc tangent.
@item atan2(@var{X},@var{Y}) @item atan2(@var{X},@var{Y})
Four-quadrant arc tangent, same as atan/2. Four-quadrant arc tangent.
@item sinh(@var{X}) @item sinh(@var{X})
Hyperbolic sine. Hyperbolic sine.

View File

@ -23,7 +23,7 @@
/* $Id$ */ /* $Id$ */
#if HAS_GETHOSTNAME #if HAS_GETHOSTNAME||HAVE_GETHOSTNAME
#else #else