Show
Ignore:
Timestamp:
03/09/06 08:25:20 (2 years ago)
Author:
Don Clugston
Message:

Many accumulated changes to 'meta'. The most interesting is the one in feqtest, which tests floating point numbers for equality to the number of decimal places given in a string.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/meta/demo/calcpi.d

    r115 r160  
    77import meta.math; 
    88import meta.conv; 
    9  
    10 import std.math; 
    119 
    1210/** real evaluateSeries!(real x, real metafunction!(real y, int n) term) 
     
    2624     const real evaluateSeries = sumsofar; 
    2725  } else { 
    28      const real evaluateSeries = .evaluateSeries!(x, term, n+1, sumsofar + term!(x, n)); 
     26     const real evaluateSeries = evaluateSeries!(x, term, n+1, sumsofar + term!(x, n)); 
    2927  } 
    3028}