Ignore:
Timestamp:
09/02/10 16:41:40 (21 months ago)
Author:
saunders
Message:

small tweaks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/linbox/linbox/field/param-fuzzy.h

    r3291 r3443  
    103103                 */ 
    104104                Element &init (Element &x, const integer &y = 0) const 
    105                         { return x = static_cast<double> (y); } 
     105                        { return x = y; } 
     106                        //{ return x = static_cast<double> (y); } 
    106107                Element &init (Element &x, const double &y) const 
    107108                        { return x = y; } 
     
    115116                 */ 
    116117                integer &convert (integer &x, const Element &y) const 
    117                         { return x = static_cast<integer> (y); } 
     118                        { return x = y; } 
    118119                double &convert (double &x, const Element &y) const 
    119120                        { return x = y; } 
Note: See TracChangeset for help on using the changeset viewer.