コード例 #1
0
ファイル: det_and_inverse.hpp プロジェクト: davoudn/triqs-1
 // no need of special traversal
 template<typename MT> V_type fortran_view (MT const &x) { return (x.indexmap().memory_layout_is_c() ? x.transpose() : x);}
コード例 #2
0
ファイル: det_and_inverse.hpp プロジェクト: EBRUDU1/triqs
 // no need of special traversal
 template <typename MT> V_type fortran_view(MT const &x) {
  if (x.indexmap().memory_layout_is_c())
   return x.transpose();
  else
   return x;
 }