Changes in src/tests/rational.c [f621a148:a6151ba]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tests/rational.c
rf621a148 ra6151ba 10 10 // Created On : Mon Mar 28 08:43:12 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T hu Apr 27 17:05:19 201713 // Update Count : 4012 // Last Modified On : Tue Jul 5 18:29:37 2016 13 // Update Count : 25 14 14 // 15 15 … … 36 36 b = (Rational){ -3, 2 }; 37 37 sout | a | b | endl; 38 // sout | a == 1 | endl; // FIX ME 38 sout | a == 1 | endl; 39 39 sout | a != b | endl; 40 40 sout | a < b | endl; … … 61 61 sout | narrow( 3.14159265358979, 256 ) | endl; 62 62 63 sout | "decompose" | endl;64 RationalImpl n, d;65 [n, d] = a;66 sout | a | n | d | endl;67 68 sout | "more tests" | endl;69 63 Rational x = { 1, 2 }, y = { 2 }; 70 64 sout | x - y | endl;
Note: See TracChangeset
for help on using the changeset viewer.