1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-15 06:17:05 +01:00

Cleaning up the recursion for traceIndex<n> after the changes the enable G++ to

compile it again.
This commit is contained in:
Peter Boyle
2015-07-01 23:43:57 +01:00
parent 31a0c8d783
commit a5c3edaca9
7 changed files with 331 additions and 329 deletions

View File

@ -59,6 +59,7 @@ template<class vtype>
// Transpose a specific index; instructive to compare this style of recursion termination
// to that of adj; which is easiers?
////////////////////////////////////////////////////////////////////////////////////////////
#if 0
template<int Level,class vtype,int N> inline
typename std::enable_if<matchGridTensorIndex<iMatrix<vtype,N>,Level>::value, iMatrix<vtype,N> >::type
transposeIndex (const iMatrix<vtype,N> &arg)
@ -96,6 +97,7 @@ transposeIndex (const iScalar<vtype> &arg)
{
return arg;
}
#endif
}
#endif