本文整理汇总了C++中ArrayType::indexmap方法的典型用法代码示例。如果您正苦于以下问题:C++ ArrayType::indexmap方法的具体用法?C++ ArrayType::indexmap怎么用?C++ ArrayType::indexmap使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ArrayType
的用法示例。
在下文中一共展示了ArrayType::indexmap方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: data_space
H5::DataSpace data_space ( ArrayType const & A) {
static const unsigned int R = ArrayType::rank;
mini_vector<hsize_t,R> S;
mini_vector<std::ptrdiff_t,R> const & S1 ( A.indexmap().strides() );
for (size_t u=0; u<R ; ++u) {
if (S1[u]<=0) TRIQS_RUNTIME_ERROR<<" negative strides not permitted in h5";
S[u] =1;
}
if (!A.indexmap().is_contiguous()) TRIQS_RUNTIME_ERROR<<" h5 : internal error : array not contiguous";
static const bool is_complex = boost::is_complex<typename ArrayType::value_type>::value;
return dataspace_from_LS<R,is_complex > ( A.indexmap().domain().lengths(),A.indexmap().domain().lengths(), S);
}