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

« back to all changes in this revision

Viewing changes to blitz/array/cartesian.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:
 
1
// -*- C++ -*-
1
2
/***************************************************************************
2
3
 * blitz/array/cartesian.h  Cartesian product of indirection containers
3
4
 *
4
 
 * Copyright (C) 1997-2001 Todd Veldhuizen <tveldhui@oonumerics.org>
5
 
 *
6
 
 * This program is free software; you can redistribute it and/or
7
 
 * modify it under the terms of the GNU General Public License
8
 
 * 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
9
14
 * of the License, or (at your option) any later version.
10
15
 *
11
 
 * This program is distributed in the hope that it will be useful,
 
16
 * Blitz is distributed in the hope that it will be useful,
12
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 * GNU General Public License for more details.
 
19
 * GNU Lesser General Public License for more details.
15
20
 *
16
 
 * Suggestions:          blitz-dev@oonumerics.org
17
 
 * 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    
18
26
 *
19
27
 * For more information, please see the Blitz++ Home Page:
20
 
 *    http://oonumerics.org/blitz/
 
28
 *    https://sourceforge.net/projects/blitz/
21
29
 *
22
30
 ****************************************************************************/
23
31
#ifndef BZ_ARRAY_CARTESIAN_H
43
51
    typedef T_tuple& reference;
44
52
    typedef const T_tuple& const_reference;
45
53
    typedef CartesianProductIterator<T_tuple,T_container,N_containers> iterator;
46
 
    typedef int difference_type;
47
 
    typedef int size_type;
48
54
 
49
55
    iterator begin()
50
56
    { return iterator(*this); }