aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/ode-0.9/ode/src/fastdot.c
diff options
context:
space:
mode:
authordan miller2007-10-19 05:20:07 +0000
committerdan miller2007-10-19 05:20:07 +0000
commitfca74b0bf0a0833f5701e9c0de7b3bc15b2233dd (patch)
tree51bcae7a1b8381a6bf6fd8025a7de1e30fe0045d /libraries/ode-0.9/ode/src/fastdot.c
parentresubmitting ode (diff)
downloadopensim-SC_OLD-fca74b0bf0a0833f5701e9c0de7b3bc15b2233dd.zip
opensim-SC_OLD-fca74b0bf0a0833f5701e9c0de7b3bc15b2233dd.tar.gz
opensim-SC_OLD-fca74b0bf0a0833f5701e9c0de7b3bc15b2233dd.tar.bz2
opensim-SC_OLD-fca74b0bf0a0833f5701e9c0de7b3bc15b2233dd.tar.xz
dont ask
Diffstat (limited to 'libraries/ode-0.9/ode/src/fastdot.c')
-rw-r--r--libraries/ode-0.9/ode/src/fastdot.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/libraries/ode-0.9/ode/src/fastdot.c b/libraries/ode-0.9/ode/src/fastdot.c
deleted file mode 100644
index 148d2dd..0000000
--- a/libraries/ode-0.9/ode/src/fastdot.c
+++ /dev/null
@@ -1,30 +0,0 @@
1/* generated code, do not edit. */
2
3#include "ode/matrix.h"
4
5
6dReal dDot (const dReal *a, const dReal *b, int n)
7{
8 dReal p0,q0,m0,p1,q1,m1,sum;
9 sum = 0;
10 n -= 2;
11 while (n >= 0) {
12 p0 = a[0]; q0 = b[0];
13 m0 = p0 * q0;
14 p1 = a[1]; q1 = b[1];
15 m1 = p1 * q1;
16 sum += m0;
17 sum += m1;
18 a += 2;
19 b += 2;
20 n -= 2;
21 }
22 n += 2;
23 while (n > 0) {
24 sum += (*a) * (*b);
25 a++;
26 b++;
27 n--;
28 }
29 return sum;
30}