Show
Ignore:
Timestamp:
07/27/08 01:47:24 (6 months ago)
Author:
leto
Message:

No longer skip test related to branch cut of complex numbers.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S29-num/sqrt.t

    r21210 r21557  
    1313is_approx(sqrt(2), 1.4142135623730951, 'got the square root of 2'); 
    1414is_approx(sqrt(5), 2.23606797749979,   'got the square root of 5'); 
    15 #?rakudo 2 skip 'NaN not implemented' 
     15#?rakudo 1 skip 'NaN not implemented' 
    1616is(sqrt(-1), NaN, 'sqrt(-1) is NaN'); 
    1717 
    18 #WARNING: there is currently no spec which of the complex roots should be 
    19 #returned. We should change that. 
     18# The spec specifies a branch cut in the complex plane of -pi <= theta <= pi 
    2019is_approx(sqrt(-1 +0i), 1i, 'got the square root of -1+0i'); 
    2120