Skip to content

Commit

Permalink
vector_of_array.h: added missing #include + reorg #includes in conver…
Browse files Browse the repository at this point in the history
…sions.cpp
  • Loading branch information
evaleev committed Aug 27, 2024
1 parent 2e907ed commit a1a65c4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
2 changes: 2 additions & 0 deletions src/TiledArray/conversions/vector_of_arrays.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
#ifndef TILEDARRAY_CONVERSIONS_VECTOR_OF_ARRAYS_H_
#define TILEDARRAY_CONVERSIONS_VECTOR_OF_ARRAYS_H_

#include <TiledArray/dist_array.h>

namespace TiledArray {

namespace detail {
Expand Down
14 changes: 11 additions & 3 deletions tests/conversions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,21 @@
*
*/

#include "range_fixture.h"
#include "tiledarray.h"
#include "unit_test_config.h"

#include "TiledArray/conversions/concat.h"
#include "TiledArray/conversions/vector_of_arrays.h"

#include "TiledArray/conversions/concat.h"

#include "TiledArray/conversions/dense_to_sparse.h"
#include "TiledArray/conversions/make_array.h"
#include "TiledArray/conversions/sparse_to_dense.h"
#include "TiledArray/conversions/to_new_tile_type.h"

#include "TiledArray/expressions/tsr_expr.h"

#include "range_fixture.h"

using namespace TiledArray;

struct ConversionsFixture : public TiledRangeFixture {
Expand Down

0 comments on commit a1a65c4

Please sign in to comment.