commit 51af79e158759bbea9ab09fa5853093a91937f5f
parent 365fcfdeb2266c4489fad8742603429d43984a75
Author: Fabian Wermelinger <fabianw@mavt.ethz.ch>
Date: Sat, 10 Jun 2017 01:56:57 -0700
removed states from generic common.h
Diffstat:
2 files changed, 1 insertion(+), 3 deletions(-)
diff --git a/TimeStepper/orderVerification/orderVerification.cpp b/TimeStepper/orderVerification/orderVerification.cpp
@@ -63,6 +63,7 @@ public:
};
// types we use
+typedef State<Real,1> State1;
using vec_t = StateVector<State1>;
using baseKernel_t = KernelBase<vec_t>*;
using baseStepper_t = StepperBase<vec_t>*;
diff --git a/common.h b/common.h
@@ -126,9 +126,6 @@ inline State<T,_SIZE> operator*(Real const c, State<T,_SIZE> const& SV)
return SVcopy *= c;
}
-typedef State<Real,1> State1;
-typedef State<Real,2> State2;
-typedef State<Real,8> State8;
template <typename T, int _SS=0, int _SE=0>
class LightVector