Changes in src/tests/rational.c [7bc4e6b:a933bcb3]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tests/rational.c
r7bc4e6b ra933bcb3 1 // 1 // 2 2 // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo 3 3 // 4 4 // The contents of this file are covered under the licence agreement in the 5 5 // file "LICENCE" distributed with Cforall. 6 // 6 // 7 7 // rational.c -- test rational number package 8 // 8 // 9 9 // Author : Peter A. Buhr 10 10 // Created On : Mon Mar 28 08:43:12 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Aug 23 21:40:11201713 // Update Count : 6 614 // 12 // Last Modified On : Wed May 17 15:46:35 2017 13 // Update Count : 65 14 // 15 15 16 16 #include <rational> … … 20 20 21 21 // UNNECESSARY, FIX ME 22 void ?{}( int & this ) {this = 0; }23 void ?{}( int & this, zero_t ) {this = 0; }24 void ?{}( int & this, one_t ) {this = 1; }22 void ?{}( int * this ) { *this = 0; } 23 void ?{}( int * this, zero_t ) { *this = 0; } 24 void ?{}( int * this, one_t ) { *this = 1; } 25 25 double convert( int i ) { return (double)i; } 26 26 int convert( double d ) { return (int)d; } … … 92 92 sout | x | endl; 93 93 94 sin | a |b;94 sin | &a | &b; 95 95 sout | a | b | endl; 96 96 } // main
Note:
See TracChangeset
for help on using the changeset viewer.