Fixing copyright issues and code contributors
[alexxy/gromacs.git] / src / gmxlib / gmx_lapack / dorm2r.c
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2012,2013, by the GROMACS development team, led by
5  * David van der Spoel, Berk Hess, Erik Lindahl, and including many
6  * others, as listed in the AUTHORS file in the top-level source
7  * directory and at http://www.gromacs.org.
8  *
9  * GROMACS is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (at your option) any later version.
13  *
14  * GROMACS is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with GROMACS; if not, see
21  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23  *
24  * If you want to redistribute modifications to GROMACS, please
25  * consider that scientific software is very special. Version
26  * control is crucial - bugs must be traceable. We will be happy to
27  * consider code for inclusion in the official distribution, but
28  * derived work must not be called official GROMACS. Details are found
29  * in the README & COPYING files - if they are missing, get the
30  * official version at http://www.gromacs.org.
31  *
32  * To help us fund GROMACS development, we humbly ask that you cite
33  * the research papers on the package. Check out http://www.gromacs.org.
34  */
35 #include "gmx_lapack.h"
36
37 void 
38 F77_FUNC(dorm2r,DORM2R)(const char *side, 
39         const char *trans, 
40         int *m, 
41         int *n, 
42         int *k, 
43         double *a, 
44         int *lda, 
45         double *tau, 
46         double *c__, 
47         int *ldc, 
48         double *work, 
49         int *info)
50 {
51     int a_dim1, a_offset, c_dim1, c_offset, i__1, i__2;
52
53     int i__, i1, i2, i3, ic, jc, mi, ni, nq;
54     double aii;
55     int left;
56     int notran;
57     int c__1 = 1;
58
59     a_dim1 = *lda;
60     a_offset = 1 + a_dim1;
61     a -= a_offset;
62     --tau;
63     c_dim1 = *ldc;
64     c_offset = 1 + c_dim1;
65     c__ -= c_offset;
66     --work;
67     *info = 0;
68     left = (*side=='L' || *side=='l');
69     notran = (*trans=='N' || *trans=='n');
70
71     ic = jc = 0;
72
73     if (left) {
74         nq = *m;
75     } else {
76         nq = *n;
77     }
78
79     if (*m <= 0 || *n <= 0 || *k <= 0) {
80         return;
81     }
82
83     if ((left && !notran) || (!left && notran)) {
84         i1 = 1;
85         i2 = *k;
86         i3 = 1;
87     } else {
88         i1 = *k;
89         i2 = 1;
90         i3 = -1;
91     }
92
93     if (left) {
94         ni = *n;
95         jc = 1;
96     } else {
97         mi = *m;
98         ic = 1;
99     }
100
101     i__1 = i2;
102     i__2 = i3;
103     for (i__ = i1; i__2 < 0 ? i__ >= i__1 : i__ <= i__1; i__ += i__2) {
104         if (left) {
105
106             mi = *m - i__ + 1;
107             ic = i__;
108         } else {
109
110             ni = *n - i__ + 1;
111             jc = i__;
112         }
113
114
115         aii = a[i__ + i__ * a_dim1];
116         a[i__ + i__ * a_dim1] = 1.;
117         F77_FUNC(dlarf,DLARF)(side, &mi, &ni, &a[i__ + i__ * a_dim1], &c__1, &tau[i__], &c__[
118                 ic + jc * c_dim1], ldc, &work[1]);
119         a[i__ + i__ * a_dim1] = aii;
120     }
121     return;
122
123