tensor.hpp 800 B

1234567891011121314151617181920212223242526
  1. // Copyright (c) 2018-2019
  2. // Cem Bassoy
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See
  5. // accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. //
  8. // The authors gratefully acknowledge the support of
  9. // Fraunhofer and Google in producing this work
  10. // which started as a Google Summer of Code project.
  11. //
  12. /// \file tensor.hpp Definition for the class vector and its derivative
  13. #ifndef BOOST_NUMERIC_UBLAS_TENSOR_HPP
  14. #define BOOST_NUMERIC_UBLAS_TENSOR_HPP
  15. #include "tensor/functions.hpp"
  16. #include "tensor/operators_arithmetic.hpp"
  17. #include "tensor/operators_comparison.hpp"
  18. #include "tensor/extents.hpp"
  19. #include "tensor/strides.hpp"
  20. #include "tensor/ostream.hpp"
  21. #include "tensor/tensor.hpp"
  22. #endif // BOOST_NUMERIC_UBLAS_TENSOR_HPP