tensor-0.1.0
 All Data Structures Namespaces Functions Variables Typedefs Enumerations Enumerator Groups Pages
indices.cc
1 // -*- mode: c++; fill-column: 80; c-basic-offset: 2; indent-tabs-mode: nil -*-
2 /*
3  Copyright (c) 2010 Juan Jose Garcia Ripoll
4 
5  Tensor is free software; you can redistribute it and/or modify it
6  under the terms of the GNU Library General Public License as published
7  by the Free Software Foundation; either version 2 of the License, or
8  (at your option) any later version.
9 
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Library General Public License for more details.
14 
15  You should have received a copy of the GNU General Public License along
16  with this program; if not, write to the Free Software Foundation, Inc.,
17  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 
20 #include <numeric>
21 #include <functional>
22 #include <tensor/indices.h>
23 
24 namespace tensor {
25 
26  const ListGenerator<index> igen = {};
27  const ListGenerator<double> rgen = {};
28  const ListGenerator<cdouble> cgen = {};
29 
30  template class Vector<index>;
31 
32  bool all_equal(const Indices &a, const Indices &b) {
33  return (a.size() == b.size()) &&
34  std::equal(a.begin_const(), a.end_const(), b.begin_const());
35  }
36 
37  index Indices::total_size() const {
38  if (size()) {
39  return std::accumulate(begin_const(), end_const(),
40  static_cast<index>(1), std::multiplies<index>());
41  } else {
42  return 0;
43  }
44  }
45 
46  const Indices Indices::range(index min, index max, index step) {
47  if (max < min) {
48  return Indices();
49  } else {
50  index size = (max - min) / step + 1;
51  Indices output(size);
52  for (Indices::iterator it = output.begin(); it != output.end(); it ++) {
53  *it = min;
54  min += step;
55  }
56  return output;
57  }
58  }
59 
60 } // namespace