следующий фрагмент кода не компилируется, проблема в T::rank
не быть недоступной (я думаю) или неинициализированной в родительском шаблоне.
Можете ли вы сказать мне точно, в чем проблема?
проходной ранг явно единственный путь? или есть способ напрямую запросить тензорный класс?
Спасибо
#include <boost/utility/enable_if.hpp>
template<class T, // size_t N,
class enable = void>
struct tensor_operator;
// template<class T, size_t N>
template<class T>
struct tensor_operator<T, typename boost::enable_if_c< T::rank == 4>::type > {
tensor_operator(T &tensor) : tensor_(tensor) {}
T& operator()(int i,int j,int k,int l) {
return tensor_.layout.element_at(i, j, k, l);
}
T &tensor_;
};
template<size_t N, typename T = double>
// struct tensor : tensor_operator<tensor<N,T>, N> {
struct tensor : tensor_operator<tensor<N,T> > {
static const size_t rank = N;
};
tensor <4> D; // compiler attempts to instantiate undefined template, not specialization
Я знаю обходной путь, однако меня интересует механизм создания шаблонов для самообразования