sisi4s
Loading...
Searching...
No Matches
Tensor.hpp
Go to the documentation of this file.
1#ifndef TENSOR_HPP_
2#define TENSOR_HPP_
3
4#include <util/CTF.hpp>
5
6namespace sisi4s {
7
8template <typename F>
9using Tensor = CTF::Tensor<F>;
10
11using TensorIndex = int64_t;
12
13template <typename F>
14using Matrix = CTF::Matrix<F>;
15
16} // namespace sisi4s
17#endif
Definition Algorithm.hpp:10
CTF::Tensor< F > Tensor
Definition Tensor.hpp:9
int64_t TensorIndex
Definition Tensor.hpp:11
CTF::Matrix< F > Matrix
Definition Tensor.hpp:14