|  | @ -18,6 +18,9 @@ namespace storm { | 
		
	
		
			
				|  |  |             /// The patch version of Storm. |  |  |             /// The patch version of Storm. | 
		
	
		
			
				|  |  |             const static unsigned versionPatch; |  |  |             const static unsigned versionPatch; | 
		
	
		
			
				|  |  |              |  |  |              | 
		
	
		
			
				|  |  |  |  |  |             /// Flag indicating if the version of Storm is a development version. | 
		
	
		
			
				|  |  |  |  |  |             const static bool versionDev; | 
		
	
		
			
				|  |  |  |  |  |              | 
		
	
		
			
				|  |  |             /// The short hash of the git commit this build is based on |  |  |             /// The short hash of the git commit this build is based on | 
		
	
		
			
				|  |  |             const static std::string gitRevisionHash; |  |  |             const static std::string gitRevisionHash; | 
		
	
		
			
				|  |  |              |  |  |              | 
		
	
	
		
			
				|  | @ -42,12 +45,18 @@ namespace storm { | 
		
	
		
			
				|  |  |             static std::string shortVersionString() { |  |  |             static std::string shortVersionString() { | 
		
	
		
			
				|  |  |                 std::stringstream sstream; |  |  |                 std::stringstream sstream; | 
		
	
		
			
				|  |  |                 sstream << versionMajor << "." << versionMinor << "." << versionPatch; |  |  |                 sstream << versionMajor << "." << versionMinor << "." << versionPatch; | 
		
	
		
			
				|  |  |  |  |  |                 if (versionDev) { | 
		
	
		
			
				|  |  |  |  |  |                     sstream << " (dev)"; | 
		
	
		
			
				|  |  |  |  |  |                 } | 
		
	
		
			
				|  |  |                 return sstream.str(); |  |  |                 return sstream.str(); | 
		
	
		
			
				|  |  |             } |  |  |             } | 
		
	
		
			
				|  |  |              |  |  |              | 
		
	
		
			
				|  |  |             static std::string longVersionString() { |  |  |             static std::string longVersionString() { | 
		
	
		
			
				|  |  |                 std::stringstream sstream; |  |  |                 std::stringstream sstream; | 
		
	
		
			
				|  |  |                 sstream << "Version " << versionMajor << "." <<  versionMinor << "." << versionPatch; |  |  |                 sstream << "Version " << versionMajor << "." <<  versionMinor << "." << versionPatch; | 
		
	
		
			
				|  |  |  |  |  |                 if (versionDev) { | 
		
	
		
			
				|  |  |  |  |  |                     sstream << " (dev)"; | 
		
	
		
			
				|  |  |  |  |  |                 } | 
		
	
		
			
				|  |  |                 if (commitsAhead) { |  |  |                 if (commitsAhead) { | 
		
	
		
			
				|  |  |                     sstream << " (+ " << commitsAhead << " commits)"; |  |  |                     sstream << " (+ " << commitsAhead << " commits)"; | 
		
	
		
			
				|  |  |                 } |  |  |                 } | 
		
	
	
		
			
				|  | 
 |