Update copyright statements and change license to LGPL
[alexxy/gromacs.git] / src / gmxlib / gmx_lapack / sorm2l.c
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2012, 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(sorm2l,SORM2L)(const char *side, 
39         const char *trans, 
40         int *m, 
41         int *n, 
42         int *k, 
43         float *a,
44         int *lda, 
45         float *tau,
46         float *c__,
47         int *ldc, 
48         float *work, 
49         int *info)
50 {
51     int a_dim1, a_offset, c_dim1, c_offset, i__1, i__2;
52     int c__1 = 1;
53
54     int i__, i1, i2, i3, mi, ni, nq;
55     float aii;
56     int left;
57     int notran;
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
68     /* Function Body */
69     *info = 0;
70     left = (*side=='L' || *side=='l');
71     notran = (*trans=='N' || *trans=='n');
72
73     if (left) {
74         nq = *m;
75     } else {
76         nq = *n;
77     }
78     if (*info != 0) {
79         i__1 = -(*info);
80         return;
81     }
82
83     if (*m == 0 || *n == 0 || *k == 0) {
84         return;
85     }
86
87     if ((left && notran) || (! left && ! notran)) {
88         i1 = 1;
89         i2 = *k;
90         i3 = 1;
91     } else {
92         i1 = *k;
93         i2 = 1;
94         i3 = -1;
95     }
96
97     if (left) {
98         ni = *n;
99     } else {
100         mi = *m;
101     }
102
103     i__1 = i2;
104     i__2 = i3;
105     for (i__ = i1; i__2 < 0 ? i__ >= i__1 : i__ <= i__1; i__ += i__2) {
106         if (left) {
107
108             mi = *m - *k + i__;
109         } else {
110
111             ni = *n - *k + i__;
112         }
113
114         aii = a[nq - *k + i__ + i__ * a_dim1];
115         a[nq - *k + i__ + i__ * a_dim1] = 1.;
116         F77_FUNC(slarf,SLARF)(side, &mi, &ni, &a[i__ * a_dim1 + 1], &c__1, &tau[i__], &c__[
117                 c_offset], ldc, &work[1]);
118         a[nq - *k + i__ + i__ * a_dim1] = aii;
119     }
120     return;
121 }