source: XIOS/dev/dev_olga/src/extern/blitz/include/blitz/array/expr.cc @ 1022

Last change on this file since 1022 was 1022, checked in by mhnguyen, 7 years ago
File size: 306 bytes
Line 
1#ifndef BZ_EXPR_CC
2#define BZ_EXPR_CC
3
4#include <blitz/array/expr.h>
5
6BZ_NAMESPACE(blitz)
7
8template<typename P_numtype>
9inline RectDomain<12>
10_bz_ArrayExprConstant<P_numtype>::domain() const
11{ 
12  TinyVector<int, 12> lb(lbound(0)), ub(ubound(0));
13  return RectDomain<12>(lb,ub);
14}
15
16BZ_NAMESPACE_END
17
18#endif
Note: See TracBrowser for help on using the repository browser.