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

Got command line args working

This commit is contained in:
Peter Boyle
2015-05-11 14:36:48 +01:00
parent 1576b7837a
commit ebcb87abe1
17 changed files with 2827 additions and 3407 deletions

View File

@ -18,7 +18,7 @@ namespace Grid {
//
class GridTensorBase {};
template<class vtype> class iScalar :public GridTensorBase
template<class vtype> class iScalar
{
public:
vtype _internal;
@ -105,7 +105,7 @@ template<class vtype> inline auto TensorRemove(iScalar<vtype> arg) -> decltype(T
return TensorRemove(arg._internal);
}
template<class vtype,int N> class iVector :public GridTensorBase
template<class vtype,int N> class iVector
{
public:
vtype _internal[N];
@ -175,7 +175,7 @@ public:
// }
};
template<class vtype,int N> class iMatrix :public GridTensorBase
template<class vtype,int N> class iMatrix
{
public:
vtype _internal[N][N];