Changeset 95a471f in git for libpolys/coeffs/mpr_complex.h
- Timestamp:
- Mar 5, 2013, 2:28:43 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'c987db42cd2ec943b97ac5746c99892ceddf909c')
- Children:
- 2bd4343ed665612641f66d5ddbe8293ed70e0045
- Parents:
- 24bddc389d70082bf25e49397ca06b884dabd5d3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/coeffs/mpr_complex.h
r24bddc r95a471f 35 35 gmp_float( const int v = 0 ) 36 36 { 37 mpf_init_set_ d( t, (double)v );37 mpf_init_set_si( t, (long)v ); 38 38 } 39 39 gmp_float( const long v ) 40 40 { 41 mpf_init_set_ d( t, (double)v );41 mpf_init_set_si( t, v ); 42 42 } 43 43 gmp_float( const mprfloat v ) // double 44 44 { 45 mpf_init_set_d( t, (double)v );45 mpf_init_set_d( t, v ); 46 46 } 47 47 gmp_float( const mpf_t v )
Note: See TracChangeset
for help on using the changeset viewer.