Added script front-end for primer-design code
[htsworkflow.git] / htswanalysis / MACS / lib / gsl / gsl-1.11 / vector / view_source.c
1 /* vector/view_source.c
2  * 
3  * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2007 Gerard Jungman, Brian Gough
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or (at
8  * your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 QUALIFIED_VIEW(_gsl_vector,view)
21 FUNCTION(gsl_vector, view_array) (QUALIFIER ATOMIC * base, size_t n)
22 {
23   QUALIFIED_VIEW(_gsl_vector,view) view = NULL_VECTOR_VIEW;
24
25   if (n == 0)
26     {
27       GSL_ERROR_VAL ("vector length n must be positive integer", 
28                      GSL_EINVAL, view);
29     }
30
31   {
32     TYPE(gsl_vector) v = NULL_VECTOR;
33
34     v.data = (ATOMIC *)base  ;
35     v.size = n;
36     v.stride = 1;
37     v.block = 0;
38     v.owner = 0;
39
40     view.vector = v;
41     return view;
42   }
43 }
44
45 QUALIFIED_VIEW(_gsl_vector,view)
46 FUNCTION(gsl_vector, view_array_with_stride) (QUALIFIER ATOMIC * base, 
47                                               size_t stride,
48                                               size_t n)
49 {
50   QUALIFIED_VIEW(_gsl_vector,view) view = NULL_VECTOR_VIEW;
51
52   if (n == 0)
53     {
54       GSL_ERROR_VAL ("vector length n must be positive integer", 
55                      GSL_EINVAL, view);
56     }
57
58   if (stride == 0)
59     {
60       GSL_ERROR_VAL ("stride must be positive integer", 
61                      GSL_EINVAL, view);
62     }
63
64   {
65     TYPE(gsl_vector) v = NULL_VECTOR;
66     
67     v.data = (ATOMIC *)base ;
68     v.size = n;
69     v.stride = stride;
70     v.block = 0;
71     v.owner = 0;
72
73     view.vector = v;
74     return view;
75   }
76 }