ScaMaC  0.8.2
A Scalable Matrix Collection
scamac_safeint.h
Go to the documentation of this file.
1 
8 #ifndef SCAMAC_SAFEINT_H
9 #define SCAMAC_SAFEINT_H
10 
11 #include "scamac_error.h"
12 #include "scamac_inttypes.h"
13 
14 // return a+b (or a*b) for a,b >=0 if no overflow occurs,
15 // otherwise return negative value (signals overflow)
16 ScamacIdx scamac_safeidx_add (ScamacIdx a, ScamacIdx b);
17 ScamacIdx scamac_safeidx_mult(ScamacIdx a, ScamacIdx b);
18 
19 ScamacInt scamac_safeint_add (ScamacInt a, ScamacInt b);
20 ScamacInt scamac_safeint_mult(ScamacInt a, ScamacInt b);
21 
22 
23 /*
24 // c = binomial(a \over\ b)
25 ScamacErrorCode scamac_safe_binomial(ScamacIdx a, ScamacIdx b, ScamacIdx *c);
26 */
27 
28 #endif /* SCAMAC_SAFEINT_H */
ScaMaC index/integer types.
ScaMaC data structure and macro definitions.