source: src/examples/sum.c@ 6db50d5

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay gc_noraii jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new string with_gc
Last change on this file since 6db50d5 was 86bd7c1f, checked in by Peter A. Buhr <pabuhr@…>, 10 years ago

licencing: eighth groups of files

  • Property mode set to 100644
File size: 1.6 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// sum.c --
8//
9// Author : Richard C. Bilson
10// Created On : Wed May 27 17:56:53 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Wed May 27 18:43:46 2015
13// Update Count : 4
14//
15
16extern "C" {
17 int printf( const char *, ... );
18}
19
20context sumable( type T ) {
21 const T 0;
22 T ?+?( T, T );
23 T ?++( T * );
24 T ?+=?( T *, T );
25};
26
27forall( type T | sumable( T ) )
28T sum( int n, T a[] ) {
29 T total; // instantiate T, select 0
30 total = 0;
31 for ( int i = 0; i < n; i += 1 )
32 total = total + a[i]; // select +
33 return total;
34}
35
36// Required to satisfy sumable as char does not have addition.
37const char 0;
38char ?+?( char op1, char op2 ) { return op1 + op2; }
39char ?++( char *op ) { return *op + 1; }
40
41const double 0; // TEMPORARY, incorrect use of int 0
42
43int main() {
44 const int size = 10, low = 0, High = 10;
45 int si = 0, ai[10]; // size
46 int i;
47 for ( i = low; i < High; i += 1 ) {
48 si += i;
49 ai[i] = i;
50 }
51 printf( "sum from %d to %d is %d, check %d\n",
52 low, High, sum( size, ai ), si );
53
54// char ci[10];
55// char c = sum( size, ci );
56// float fi[10];
57// float f = sum( size, fi );
58
59 double sd = 0.0, ad[10]; // size
60 for ( i = low; i < High; i += 1 ) {
61 double d = i / (double)size;
62 sd += d;
63 ad[i] = d;
64 }
65 printf( "sum from %g to %g is %g, check %g\n",
66 low / (double)size, High / (double)size, sum( size, ad ), sd );
67}
68
69// Local Variables: //
70// tab-width: 4 //
71// compile-command: "cfa sum.c" //
72// End: //
Note: See TracBrowser for help on using the repository browser.