tensor-0.1.0
 All Data Structures Namespaces Functions Variables Typedefs Enumerations Enumerator Groups Pages
tensor_foldin_z.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 "tensor_foldin.cc"
21 
22 namespace tensor {
23 
34  const Tensor<cdouble>
35  foldin(const Tensor<cdouble> &a, int _ndx1, const Tensor<cdouble> &b, int _ndx2)
36  {
37  Tensor<cdouble> output;
38  do_foldin_into(output, a, _ndx1, b, _ndx2);
39  return output;
40  }
41 
46  void
47  foldin_into(Tensor<cdouble> &output, const Tensor<cdouble> &a, int _ndx1,
48  const Tensor<cdouble> &b, int _ndx2)
49  {
50  do_foldin_into(output, a, _ndx1, b, _ndx2);
51  }
52 
53 } // namespace tensor
void foldin_into(Tensor< cdouble > &output, const Tensor< cdouble > &a, int _ndx1, const Tensor< cdouble > &b, int _ndx2)
Similar to foldin(), but the output has been preallocated.
const Tensor< cdouble > foldin(const Tensor< cdouble > &a, int _ndx1, const Tensor< cdouble > &b, int _ndx2)
Contraction of two tensors with complex conjugation.