forked from M-Labs/nac3
24 lines
598 B
C++
24 lines
598 B
C++
#pragma once
|
|
|
|
#ifdef IRRT_DEBUG
|
|
#define IRRT_DEBUG_ASSERT
|
|
#define IRRT_DEBUG_ASSERT_BOOL true
|
|
#else
|
|
#define IRRT_DEBUG_ASSERT_BOOL false
|
|
#endif
|
|
|
|
#include <irrt/core.hpp>
|
|
#include <irrt/debug.hpp>
|
|
#include <irrt/exception.hpp>
|
|
#include <irrt/int_defs.hpp>
|
|
#include <irrt/ndarray/array.hpp>
|
|
#include <irrt/ndarray/basic.hpp>
|
|
#include <irrt/ndarray/broadcast.hpp>
|
|
#include <irrt/ndarray/def.hpp>
|
|
#include <irrt/ndarray/indexing.hpp>
|
|
#include <irrt/ndarray/iter.hpp>
|
|
#include <irrt/ndarray/product.hpp>
|
|
#include <irrt/ndarray/reshape.hpp>
|
|
#include <irrt/ndarray/transpose.hpp>
|
|
#include <irrt/util.hpp>
|