source: tests/rational.cfa @ 342be43

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 342be43 was f00b2c2c, checked in by Peter A. Buhr <pabuhr@…>, 4 years ago

defined rational constructor from 0 [fixes #117]

  • Property mode set to 100644
File size: 2.1 KB
RevLine 
[2afec66]1//
[53ba273]2// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
[2afec66]6//
[dc8511c]7// rational.cfa -- test rational number package
[2afec66]8//
[53ba273]9// Author           : Peter A. Buhr
10// Created On       : Mon Mar 28 08:43:12 2016
11// Last Modified By : Peter A. Buhr
[f00b2c2c]12// Last Modified On : Sat Feb  8 18:46:23 2020
13// Update Count     : 86
[2afec66]14//
[53ba273]15
[73abe95]16#include <rational.hfa>
17#include <limits.hfa>
18#include <stdlib.hfa>
19#include <fstream.hfa>
[53ba273]20
[f00b2c2c]21typedef Rational(int) RatInt;
22double convert( int i ) { return (double)i; }                   // used by narrow/widen
[6c6455f]23int convert( double d ) { return (int)d; }
[561f730]24
[53ba273]25int main() {
[200fcb3]26        sout | "constructor";
[f00b2c2c]27        RatInt a = { 3 }, b = { 4 }, c, d = 0, e = 1;
28        sout | a | b | c | d | e;
[561f730]29
[f00b2c2c]30        a = (RatInt){ 4, 8 };
31        b = (RatInt){ 5, 7 };
[200fcb3]32        sout | a | b;
[f00b2c2c]33        a = (RatInt){ -2, -3 };
34        b = (RatInt){ 3, -2 };
[200fcb3]35        sout | a | b;
[f00b2c2c]36        a = (RatInt){ -2, 3 };
37        b = (RatInt){ 3, 2 };
[200fcb3]38        sout | a | b;
[53ba273]39
[200fcb3]40        sout | "logical";
[f00b2c2c]41        a = (RatInt){ -2 };
42        b = (RatInt){ -3, 2 };
[200fcb3]43        sout | a | b;
44//      sout | a == 1; // FIX ME
45        sout | a != b;
46        sout | a <  b;
47        sout | a <= b;
48        sout | a >  b;
49        sout | a >= b;
[53ba273]50
[200fcb3]51        sout | "arithmetic";
52        sout | a | b;
53        sout | a + b;
54        sout | a - b;
55        sout | a * b;
56        sout | a / b;
[0087e0e]57//      sout | a \ 2 | b \ 2; // FIX ME
58//      sout | a \ -2 | b \ -2;
[53ba273]59
[200fcb3]60        sout | "conversion";
[f00b2c2c]61        a = (RatInt){ 3, 4 };
[200fcb3]62        sout | widen( a );
[f00b2c2c]63        a = (RatInt){ 1, 7 };
[200fcb3]64        sout | widen( a );
[f00b2c2c]65        a = (RatInt){ 355, 113 };
[200fcb3]66        sout | widen( a );
67        sout | narrow( 0.75, 4 );
68        sout | narrow( 0.14285714285714, 16 );
69        sout | narrow( 3.14159265358979, 256 );
[53ba273]70
[200fcb3]71        sout | "decompose";
[561f730]72        int n, d;
[39c5ea3]73//      [n, d] = a;
[200fcb3]74//      sout | a | n | d;
[f621a148]75
[200fcb3]76        sout | "more tests";
[f00b2c2c]77        RatInt x = { 1, 2 }, y = { 2 };
[200fcb3]78        sout | x - y;
79        sout | x > y;
80        sout | x | numerator( x, 2 ) | x;
81        sout | y | denominator( y, -2 ) | y;
[53ba273]82
[f00b2c2c]83        RatInt z = { 0, 5 };
[200fcb3]84        sout | z;
[53ba273]85
[200fcb3]86        sout | x | numerator( x, 0 ) | x;
[53ba273]87
[f00b2c2c]88        x = (RatInt){ 1, MAX } + (RatInt){ 1, MAX };
[200fcb3]89        sout | x;
[f00b2c2c]90        x = (RatInt){ 3, MAX } + (RatInt){ 2, MAX };
[200fcb3]91        sout | x;
[53ba273]92
[7bc4e6b]93        sin | a | b;
[200fcb3]94        sout | a | b;
[53ba273]95} // main
96
97// Local Variables: //
98// tab-width: 4 //
[dc8511c]99// compile-command: "cfa rational.cfa" //
[53ba273]100// End: //
Note: See TracBrowser for help on using the repository browser.