multi_index.hpp 247 Bytes
Newer Older
Chao Liu's avatar
Chao Liu committed
1
2
3
4
5
#ifndef CK_MULTI_INDEX_HPP
#define CK_MULTI_INDEX_HPP

#include "common_header.hpp"

6
#if CK_EXPERIMENTAL_USE_DYNAMICALLY_INDEXED_MULTI_INDEX
Chao Liu's avatar
Chao Liu committed
7
8
9
10
11
12
#include "array_multi_index.hpp"
#else
#include "statically_indexed_array_multi_index.hpp"
#endif

#endif