Re: [pure-lang-users] math.pure
Status: Beta
Brought to you by:
agraef
From: Eddie R. <er...@bm...> - 2008-08-21 20:40:51
|
On Thu, 2008-08-21 at 12:51 -0500, Eddie Rucker wrote: > ^ was bombing out somewhere for valid numbers. After the update not bombing anymore :) However, pow does: > pow 0 (-1); <stdin>:2.0-13: unhandled exception 'signal 8' while evaluating 'pow 0 (-1)' Did you want to leave this unevaluated or throw an error? Also, x div 0 throws and error as well? Should we add the following? nan^nan = nan; nan^inf = nan; pow nan nan = nan; pow nan inf = nan; e.r. |