#pragma once namespace storm { template struct NumberTraits { static const bool SupportsExponential = false; }; template<> struct NumberTraits { static const bool SupportsExponential = true; }; }