forked from tthsqe12/flint2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot.c
30 lines (24 loc) · 734 Bytes
/
dot.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
Copyright (C) 2010 William Hart
Copyright (C) 2014 Abhinav Baid
This file is part of FLINT.
FLINT is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License (LGPL) as published
by the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version. See <http://www.gnu.org/licenses/>.
*/
#include "mpf_vec.h"
void
_mpf_vec_dot(mpf_t res, const mpf * vec1, const mpf * vec2, slong len2)
{
slong i;
mpf_t tmp;
mpf_init(tmp);
flint_mpf_set_ui(res, 0);
for (i = 0; i < len2; i++)
{
mpf_mul(tmp, vec1 + i, vec2 + i);
mpf_add(res, res, tmp);
}
mpf_clear(tmp);
}