Changeset 1865 in Sophya for trunk/Eval/COS/vecmapstl.cc
- Timestamp:
- Jan 18, 2002, 10:26:27 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Eval/COS/vecmapstl.cc
r1863 r1865 71 71 << " zd1+zd2=" << zd1+zd2 << endl; 72 72 convCR czr, czr1(z1), czr2(zd2), czr3; 73 cout << " convCR: czr1(z1)" << (complex<float>)czr1 73 #if defined(__GNUG__) && (__GNUC__ < 3) 74 complex<float> za; 75 complex<double> zb,zc; 76 za = czr1; zb = czr1; zc = czr2; 77 cout << " GNUG_Version: __GNUC__ = " << __GNUC__ << endl; 78 cout << " convCR: za=(zb)=czr1" << za << " zc=" << zc 79 << " zb+zc=" << zb+zc << endl ; 80 #else 81 cout << " convCR: czr1(z1)" << (complex<float>)czr1 74 82 << " czr2(z2)" << (complex<double>)czr2 75 83 << " czr1+czr2= " << (complex<double>)czr2+(complex<double>)czr1 << endl; 84 #endif 76 85 } 77 86 catch(exception exc){
Note:
See TracChangeset
for help on using the changeset viewer.