Make real.h so we can change reals
[ipdf/code.git] / src / ipdf.h
index 8ee30c3..c34f5ed 100644 (file)
@@ -2,12 +2,11 @@
 #define _IPDF_H
 
 #include "common.h"
+#include "real.h"
 
 namespace IPDF
 {
-       typedef float Real;
-       
-       inline float RealToFloat(Real r) {return r;}
+
        inline Real Random(Real max=1, Real min=0)
        {
                return min + (max-min) * ((Real)(rand() % (int)1e6) / 1e6);

UCC git Repository :: git.ucc.asn.au