From 54d89727538bfd11c8c8be17fe6faad6bf243e4d Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Fri, 15 May 2015 11:40:59 +0100 Subject: [PATCH] strong_inline forces ICPC to do it. --- lib/math/Grid_math_arith_scalar.h | 96 +++++++++++++++---------------- 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/lib/math/Grid_math_arith_scalar.h b/lib/math/Grid_math_arith_scalar.h index 69c9a169..c6418638 100644 --- a/lib/math/Grid_math_arith_scalar.h +++ b/lib/math/Grid_math_arith_scalar.h @@ -9,58 +9,58 @@ namespace Grid { ////////////////////////////////////////////////////////////////////////////////////////// // multiplication by fundamental scalar type -template inline iScalar operator * (const iScalar& lhs,const typename iScalar::scalar_type rhs) +template strong_inline iScalar operator * (const iScalar& lhs,const typename iScalar::scalar_type rhs) { typename iScalar::tensor_reduced srhs; srhs=rhs; return lhs*srhs; } -template inline iScalar operator * (const typename iScalar::scalar_type lhs,const iScalar& rhs) { return rhs*lhs; } +template strong_inline iScalar operator * (const typename iScalar::scalar_type lhs,const iScalar& rhs) { return rhs*lhs; } -template inline iVector operator * (const iVector& lhs,const typename iScalar::scalar_type rhs) +template strong_inline iVector operator * (const iVector& lhs,const typename iScalar::scalar_type rhs) { typename iVector::tensor_reduced srhs; srhs=rhs; return lhs*srhs; } -template inline iVector operator * (const typename iScalar::scalar_type lhs,const iVector& rhs) { return rhs*lhs; } +template strong_inline iVector operator * (const typename iScalar::scalar_type lhs,const iVector& rhs) { return rhs*lhs; } -template inline iMatrix operator * (const iMatrix& lhs,const typename iScalar::scalar_type &rhs) +template strong_inline iMatrix operator * (const iMatrix& lhs,const typename iScalar::scalar_type &rhs) { typename iMatrix::tensor_reduced srhs; srhs=rhs; return lhs*srhs; } -template inline iMatrix operator * (const typename iScalar::scalar_type & lhs,const iMatrix& rhs) { return rhs*lhs; } +template strong_inline iMatrix operator * (const typename iScalar::scalar_type & lhs,const iMatrix& rhs) { return rhs*lhs; } //////////////////////////////////////////////////////////////////// // Double support; cast to "scalar_type" through constructor //////////////////////////////////////////////////////////////////// -template inline iScalar operator * (const iScalar& lhs,double rhs) +template strong_inline iScalar operator * (const iScalar& lhs,double rhs) { typename iScalar::scalar_type t; t=rhs; typename iScalar::tensor_reduced srhs;srhs=t; return lhs*srhs; } -template inline iScalar operator * (double lhs,const iScalar& rhs) { return rhs*lhs; } +template strong_inline iScalar operator * (double lhs,const iScalar& rhs) { return rhs*lhs; } -template inline iVector operator * (const iVector& lhs,double rhs) +template strong_inline iVector operator * (const iVector& lhs,double rhs) { typename iScalar::scalar_type t;t=rhs; typename iScalar::tensor_reduced srhs;srhs=t; return lhs*srhs; } -template inline iVector operator * (double lhs,const iVector& rhs) { return rhs*lhs; } +template strong_inline iVector operator * (double lhs,const iVector& rhs) { return rhs*lhs; } -template inline iMatrix operator * (const iMatrix& lhs,double rhs) +template strong_inline iMatrix operator * (const iMatrix& lhs,double rhs) { typename iScalar::scalar_type t;t=rhs; typename iScalar::tensor_reduced srhs;srhs=t; return lhs*srhs; } -template inline iMatrix operator * (double lhs,const iMatrix& rhs) { return rhs*lhs; } +template strong_inline iMatrix operator * (double lhs,const iMatrix& rhs) { return rhs*lhs; } //////////////////////////////////////////////////////////////////// // Complex support; cast to "scalar_type" through constructor //////////////////////////////////////////////////////////////////// -template inline iScalar operator * (const iScalar& lhs,ComplexD rhs) +template strong_inline iScalar operator * (const iScalar& lhs,ComplexD rhs) { typename iScalar::scalar_type t;t=rhs; typename iScalar::tensor_reduced srhs;srhs=t; @@ -68,131 +68,131 @@ template inline iScalar operator * (const iScalar& lhs,ComplexD r return lhs*srhs; } -template inline iScalar operator * (ComplexD lhs,const iScalar& rhs) { return rhs*lhs; } +template strong_inline iScalar operator * (ComplexD lhs,const iScalar& rhs) { return rhs*lhs; } -template inline iVector operator * (const iVector& lhs,ComplexD rhs) +template strong_inline iVector operator * (const iVector& lhs,ComplexD rhs) { typename iScalar::scalar_type t;t=rhs; typename iScalar::tensor_reduced srhs;srhs=t; return lhs*srhs; } -template inline iVector operator * (ComplexD lhs,const iVector& rhs) { return rhs*lhs; } +template strong_inline iVector operator * (ComplexD lhs,const iVector& rhs) { return rhs*lhs; } -template inline iMatrix operator * (const iMatrix& lhs,ComplexD rhs) +template strong_inline iMatrix operator * (const iMatrix& lhs,ComplexD rhs) { typename iScalar::scalar_type t;t=rhs; typename iScalar::tensor_reduced srhs;srhs=t; return lhs*srhs; } -template inline iMatrix operator * (ComplexD lhs,const iMatrix& rhs) { return rhs*lhs; } +template strong_inline iMatrix operator * (ComplexD lhs,const iMatrix& rhs) { return rhs*lhs; } //////////////////////////////////////////////////////////////////// // Integer support; cast to "scalar_type" through constructor //////////////////////////////////////////////////////////////////// -template inline iScalar operator * (const iScalar& lhs,Integer rhs) +template strong_inline iScalar operator * (const iScalar& lhs,Integer rhs) { typename iScalar::scalar_type t; t=rhs; typename iScalar::tensor_reduced srhs; srhs=t; return lhs*srhs; } -template inline iScalar operator * (Integer lhs,const iScalar& rhs) { return rhs*lhs; } +template strong_inline iScalar operator * (Integer lhs,const iScalar& rhs) { return rhs*lhs; } -template inline iVector operator * (const iVector& lhs,Integer rhs) +template strong_inline iVector operator * (const iVector& lhs,Integer rhs) { typename iScalar::scalar_type t;t=rhs; typename iScalar::tensor_reduced srhs;srhs=t; return lhs*srhs; } -template inline iVector operator * (Integer lhs,const iVector& rhs) { return rhs*lhs; } +template strong_inline iVector operator * (Integer lhs,const iVector& rhs) { return rhs*lhs; } -template inline iMatrix operator * (const iMatrix& lhs,Integer rhs) +template strong_inline iMatrix operator * (const iMatrix& lhs,Integer rhs) { typename iScalar::scalar_type t;t=rhs; typename iScalar::tensor_reduced srhs;srhs=t; return lhs*srhs; } -template inline iMatrix operator * (Integer lhs,const iMatrix& rhs) { return rhs*lhs; } +template strong_inline iMatrix operator * (Integer lhs,const iMatrix& rhs) { return rhs*lhs; } /////////////////////////////////////////////////////////////////////////////////////////////// // addition by fundamental scalar type applies to matrix(down diag) and scalar /////////////////////////////////////////////////////////////////////////////////////////////// -template inline iScalar operator + (const iScalar& lhs,const typename iScalar::scalar_type rhs) +template strong_inline iScalar operator + (const iScalar& lhs,const typename iScalar::scalar_type rhs) { typename iScalar::tensor_reduced srhs; srhs=rhs; return lhs+srhs; } -template inline iScalar operator + (const typename iScalar::scalar_type lhs,const iScalar& rhs) { return rhs+lhs; } +template strong_inline iScalar operator + (const typename iScalar::scalar_type lhs,const iScalar& rhs) { return rhs+lhs; } -template inline iMatrix operator + (const iMatrix& lhs,const typename iScalar::scalar_type rhs) +template strong_inline iMatrix operator + (const iMatrix& lhs,const typename iScalar::scalar_type rhs) { typename iMatrix::tensor_reduced srhs; srhs=rhs; return lhs+srhs; } -template inline iMatrix operator + (const typename iScalar::scalar_type lhs,const iMatrix& rhs) { return rhs+lhs; } +template strong_inline iMatrix operator + (const typename iScalar::scalar_type lhs,const iMatrix& rhs) { return rhs+lhs; } //////////////////////////////////////////////////////////////////// // Double support; cast to "scalar_type" through constructor //////////////////////////////////////////////////////////////////// -template inline iScalar operator + (const iScalar& lhs,double rhs) +template strong_inline iScalar operator + (const iScalar& lhs,double rhs) { typename iScalar::scalar_type t; t=rhs; typename iScalar::tensor_reduced srhs; srhs=t; return lhs+srhs; } -template inline iScalar operator + (double lhs,const iScalar& rhs) { return rhs+lhs; } +template strong_inline iScalar operator + (double lhs,const iScalar& rhs) { return rhs+lhs; } -template inline iMatrix operator + (const iMatrix& lhs,double rhs) +template strong_inline iMatrix operator + (const iMatrix& lhs,double rhs) { typename iScalar::scalar_type t;t=rhs; typename iScalar::tensor_reduced srhs;srhs=t; return lhs+srhs; } -template inline iMatrix operator + (double lhs,const iMatrix& rhs) { return rhs+lhs; } +template strong_inline iMatrix operator + (double lhs,const iMatrix& rhs) { return rhs+lhs; } // Integer support cast to scalar type through constructor -template inline iScalar operator + (const iScalar& lhs,Integer rhs) +template strong_inline iScalar operator + (const iScalar& lhs,Integer rhs) { typename iScalar::scalar_type t; t=rhs; typename iScalar::tensor_reduced srhs; srhs=t; return lhs+srhs; } -template inline iScalar operator + (Integer lhs,const iScalar& rhs) { return rhs+lhs; } +template strong_inline iScalar operator + (Integer lhs,const iScalar& rhs) { return rhs+lhs; } -template inline iMatrix operator + (const iMatrix& lhs,Integer rhs) +template strong_inline iMatrix operator + (const iMatrix& lhs,Integer rhs) { typename iScalar::scalar_type t;t=rhs; typename iScalar::tensor_reduced srhs;srhs=t; return lhs+srhs; } -template inline iMatrix operator + (Integer lhs,const iMatrix& rhs) { return rhs+lhs; } +template strong_inline iMatrix operator + (Integer lhs,const iMatrix& rhs) { return rhs+lhs; } /////////////////////////////////////////////////////////////////////////////////////////////// // subtraction of fundamental scalar type applies to matrix(down diag) and scalar /////////////////////////////////////////////////////////////////////////////////////////////// -template inline iScalar operator - (const iScalar& lhs,const typename iScalar::scalar_type rhs) +template strong_inline iScalar operator - (const iScalar& lhs,const typename iScalar::scalar_type rhs) { typename iScalar::tensor_reduced srhs; srhs=rhs; return lhs-srhs; } -template inline iScalar operator - (const typename iScalar::scalar_type lhs,const iScalar& rhs) +template strong_inline iScalar operator - (const typename iScalar::scalar_type lhs,const iScalar& rhs) { typename iScalar::tensor_reduced slhs;slhs=lhs; return slhs-rhs; } -template inline iMatrix operator - (const iMatrix& lhs,const typename iScalar::scalar_type rhs) +template strong_inline iMatrix operator - (const iMatrix& lhs,const typename iScalar::scalar_type rhs) { typename iScalar::tensor_reduced srhs; srhs=rhs; return lhs-srhs; } -template inline iMatrix operator - (const typename iScalar::scalar_type lhs,const iMatrix& rhs) +template strong_inline iMatrix operator - (const typename iScalar::scalar_type lhs,const iMatrix& rhs) { typename iScalar::tensor_reduced slhs;slhs=lhs; return slhs-rhs; @@ -201,26 +201,26 @@ template inline iMatrix operator - (const typename iScalar inline iScalar operator - (const iScalar& lhs,double rhs) +template strong_inline iScalar operator - (const iScalar& lhs,double rhs) { typename iScalar::scalar_type t; t=rhs; typename iScalar::tensor_reduced srhs; srhs=t; return lhs-srhs; } -template inline iScalar operator - (double lhs,const iScalar& rhs) +template strong_inline iScalar operator - (double lhs,const iScalar& rhs) { typename iScalar::scalar_type t(lhs); typename iScalar::tensor_reduced slhs;slhs=t; return slhs-rhs; } -template inline iMatrix operator - (const iMatrix& lhs,double rhs) +template strong_inline iMatrix operator - (const iMatrix& lhs,double rhs) { typename iScalar::scalar_type t;t=rhs; typename iScalar::tensor_reduced srhs;srhs=t; return lhs-srhs; } -template inline iMatrix operator - (double lhs,const iMatrix& rhs) +template strong_inline iMatrix operator - (double lhs,const iMatrix& rhs) { typename iScalar::scalar_type t(lhs); typename iScalar::tensor_reduced slhs;slhs=t; @@ -230,25 +230,25 @@ template inline iMatrix operator - (double lhs,const iMatrix //////////////////////////////////////////////////////////////////// // Integer support; cast to "scalar_type" through constructor //////////////////////////////////////////////////////////////////// -template inline iScalar operator - (const iScalar& lhs,Integer rhs) +template strong_inline iScalar operator - (const iScalar& lhs,Integer rhs) { typename iScalar::scalar_type t; t=rhs; typename iScalar::tensor_reduced srhs; srhs=t; return lhs-srhs; } -template inline iScalar operator - (Integer lhs,const iScalar& rhs) +template strong_inline iScalar operator - (Integer lhs,const iScalar& rhs) { typename iScalar::scalar_type t;t=lhs; typename iScalar::tensor_reduced slhs;slhs=t; return slhs-rhs; } -template inline iMatrix operator - (const iMatrix& lhs,Integer rhs) +template strong_inline iMatrix operator - (const iMatrix& lhs,Integer rhs) { typename iScalar::scalar_type t;t=rhs; typename iScalar::tensor_reduced srhs;srhs=t; return lhs-srhs; } -template inline iMatrix operator - (Integer lhs,const iMatrix& rhs) +template strong_inline iMatrix operator - (Integer lhs,const iMatrix& rhs) { typename iScalar::scalar_type t;t=lhs; typename iScalar::tensor_reduced slhs;slhs=t;