summaryrefslogtreecommitdiffstats
path: root/mathfuncs_base.h
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2012-12-01 16:08:57 -0500
committerErik Schnetter <schnetter@gmail.com>2012-12-01 16:08:57 -0500
commit471686ed980d1068aa5e5c8fb8289f8f81d33d39 (patch)
treec02940e1ca726573a20d117ca008fa50ea8c8039 /mathfuncs_base.h
parentaf41d3bc35d082cb4d8e793071a801b589978ce8 (diff)
downloadvecmathlib-471686ed980d1068aa5e5c8fb8289f8f81d33d39.zip
vecmathlib-471686ed980d1068aa5e5c8fb8289f8f81d33d39.tar.gz
Implement sin, make optimised builds work
Diffstat (limited to 'mathfuncs_base.h')
-rw-r--r--mathfuncs_base.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/mathfuncs_base.h b/mathfuncs_base.h
index a7207f8..5dc3a27 100644
--- a/mathfuncs_base.h
+++ b/mathfuncs_base.h
@@ -31,6 +31,12 @@ namespace vecmathlib {
typedef realvec_t RV;
typedef intvec_t IV;
typedef boolvec_t BV;
+ // static real_t R(double a) { return real_t(a); }
+ // static int_t I(int a) { return int_t(a); }
+ // static uint_t U(int a) { return uint_t(a); }
+ // static realvec_t RV(real_t a) { return realvec_t(a); }
+ // static intvec_t IV(int_t a) { return intvec_t(a); }
+ // static boolvec_t BV(bool a) { return boolvec_t(a); }
// asin
static realvec_t vml_acos(realvec_t x);
OpenPOWER on IntegriCloud