source: tests/math3.cfa @ 200fcb3

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resnenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprno_listpersistent-indexerpthread-emulationqualifiedEnum
Last change on this file since 200fcb3 was 200fcb3, checked in by Peter A. Buhr <pabuhr@…>, 5 years ago

add auto newline to sout, change endl to nl

  • Property mode set to 100644
File size: 1.9 KB
RevLine 
[73abe95]1//
[0a5b683]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.
[73abe95]6//
[dc8511c]7// math3.cfa --
[73abe95]8//
[0a5b683]9// Author           : Peter A. Buhr
10// Created On       : Fri Apr 22 14:59:21 2016
11// Last Modified By : Peter A. Buhr
[200fcb3]12// Last Modified On : Tue Dec 11 10:15:49 2018
13// Update Count     : 85
[73abe95]14//
[0a5b683]15
[73abe95]16#include <fstream.hfa>
17#include <math.hfa>
[0a5b683]18
19int main( void ) {
20        float f;
21        double d;
22        long double l;
23
[ef3403c6]24        //---------------------- Hyperbolic ----------------------
25
[200fcb3]26        sout | "sinh:" | sinh( 1.0F ) | sinh( 1.0D ) | sinh( 1.0L ) | sinh( 1.0F+1.0FI ) | sinh( 1.0D+1.0DI ) | sinh( 1.0DL+1.0LI );
27        sout | "cosh:" | cosh( 1.0F ) | cosh( 1.0D ) | cosh( 1.0L ) | cosh( 1.0F+1.0FI ) | cosh( 1.0D+1.0DI ) | cosh( 1.0DL+1.0LI );
28        sout | "tanh:" | tanh( 1.0F ) | tanh( 1.0D ) | tanh( 1.0L ) | tanh( 1.0F+1.0FI ) | tanh( 1.0D+1.0DI ) | tanh( 1.0DL+1.0LI );
29        sout | "acosh:" | acosh( 1.0F ) | acosh( 1.0D ) | acosh( 1.0L ) | acosh( 1.0F+1.0FI ) | acosh( 1.0D+1.0DI ) | acosh( 1.0DL+1.0LI );
30        sout | "asinh:" | asinh( 1.0F ) | asinh( 1.0D ) | asinh( 1.0L ) | asinh( 1.0F+1.0FI ) | asinh( 1.0D+1.0DI ) | asinh( 1.0DL+1.0LI );
31        sout | "atanh:" | atanh( 1.0F ) | atanh( 1.0D ) | atanh( 1.0L ) | atanh( 1.0F+1.0FI ) | atanh( 1.0D+1.0DI ) | atanh( 1.0DL+1.0LI );
[ef3403c6]32
33        //---------------------- Error / Gamma ----------------------
34
[200fcb3]35        sout | "erf:" | erf( 1.0F ) | erf( 1.0D ) | erf( 1.0L );
36        sout | "erfc:" | erfc( 1.0F ) | erfc( 1.0D ) | erfc( 1.0L );
37        sout | "lgamma:" | lgamma( 4.0F ) | lgamma( 4.0D ) | lgamma( 4.0L );
[ef3403c6]38        int sign;
39        f = lgamma( 4.0F, &sign );
[200fcb3]40        sout | "lgamma:" | f | sign | nonl;
[ef3403c6]41        d = lgamma( 4.0D, &sign );
[200fcb3]42        sout | d | sign | nonl;
[ef3403c6]43        l = lgamma( 4.0L, &sign );
[200fcb3]44        sout | l | sign;
45        sout | "tgamma:" | tgamma( 4.0F ) | tgamma( 4.0D ) | tgamma( 4.0L );
[0a5b683]46} // main
47
48// Local Variables: //
49// tab-width: 4 //
[dc8511c]50// compile-command: "cfa math3.cfa" //
[0a5b683]51// End: //
Note: See TracBrowser for help on using the repository browser.