~ubuntu-branches/ubuntu/utopic/blitz++/utopic

« back to all changes in this revision

Viewing changes to blitz/meta/vecassign.h

  • Committer: Package Import Robot
  • Author(s): Christophe Trophime
  • Date: 2012-07-06 09:15:30 UTC
  • mfrom: (11.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20120706091530-vzrb8zf0vpbf8tp9
Tags: 1:0.10-1
* New upstream release
  Closes: #679407
* debian/rules:
  - update for new release
  - add override_dh_auto_test target
  - regenerate configure and Makefile.am
* debian/control:
  - add libtool, automake to BuildDepends
* debian/libblitz-doc.install
  - modify path for html files
* remove uneeded patches
* add examples.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
/***************************************************************************
3
3
 * blitz/meta/vecassign.h   TinyVector assignment metaprogram
4
4
 *
5
 
 * $Id: vecassign.h,v 1.6 2005/05/07 04:17:57 julianc Exp $
6
 
 *
7
 
 * Copyright (C) 1997-2001 Todd Veldhuizen <tveldhui@oonumerics.org>
8
 
 *
9
 
 * This program is free software; you can redistribute it and/or
10
 
 * modify it under the terms of the GNU General Public License
11
 
 * as published by the Free Software Foundation; either version 2
 
5
 * $Id$
 
6
 *
 
7
 * Copyright (C) 1997-2011 Todd Veldhuizen <tveldhui@acm.org>
 
8
 *
 
9
 * This file is a part of Blitz.
 
10
 *
 
11
 * Blitz is free software: you can redistribute it and/or modify 
 
12
 * it under the terms of the GNU Lesser General Public License
 
13
 * as published by the Free Software Foundation, either version 3
12
14
 * of the License, or (at your option) any later version.
13
15
 *
14
 
 * This program is distributed in the hope that it will be useful,
 
16
 * Blitz is distributed in the hope that it will be useful,
15
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 
 * GNU General Public License for more details.
 
19
 * GNU Lesser General Public License for more details.
18
20
 *
19
 
 * Suggestions:          blitz-dev@oonumerics.org
20
 
 * Bugs:                 blitz-bugs@oonumerics.org
 
21
 * You should have received a copy of the GNU Lesser General Public 
 
22
 * License along with Blitz.  If not, see <http://www.gnu.org/licenses/>.
 
23
 * 
 
24
 * Suggestions:          blitz-devel@lists.sourceforge.net
 
25
 * Bugs:                 blitz-support@lists.sourceforge.net    
21
26
 *
22
27
 * For more information, please see the Blitz++ Home Page:
23
 
 *    http://oonumerics.org/blitz/
 
28
 *    https://sourceforge.net/projects/blitz/
24
29
 *
25
30
 ***************************************************************************/
26
31
 
27
32
#ifndef BZ_META_VECASSIGN_H
28
33
#define BZ_META_VECASSIGN_H
29
34
 
 
35
#include <blitz/blitz.h>
 
36
 
30
37
BZ_NAMESPACE(blitz)
31
38
 
32
39
template<int N, int I> 
34
41
public:
35
42
    static const int loopFlag = (I < N-1) ? 1 : 0;
36
43
 
37
 
    template<typename T_vector, typename T_expr, typename T_updater>
38
 
    static inline void fastAssign(T_vector& vec, T_expr expr, T_updater u)
 
44
    template<typename T_data, typename T_expr, typename T_updater>
 
45
    static inline void fastAssign(T_data* data, T_expr expr, T_updater u)
39
46
    {
40
 
        u.update(vec[I], expr._bz_fastAccess(I));
 
47
      u.update(data[I], expr.fastRead(I));
41
48
        _bz_meta_vecAssign<N * loopFlag, (I+1) * loopFlag>
42
 
           ::fastAssign(vec,expr,u);
 
49
          ::fastAssign(data,expr,u);
43
50
    }
44
51
 
45
52
    template<typename T_vector, typename T_expr, typename T_updater>
83
90
    }
84
91
};
85
92
 
 
93
 
 
94
 
86
95
BZ_NAMESPACE_END
87
96
 
88
97
#endif // BZ_META_ASSIGN_H