Browse Source

Fixed some comments in utility::vector

Former-commit-id: 2c8d6f2bb6
tempestpy_adaptions
TimQu 9 years ago
parent
commit
81662f5ab4
  1. 4
      src/utility/vector.h

4
src/utility/vector.h

@ -67,7 +67,7 @@ namespace storm {
}
/*!
* Constructs a vector [min, min+1, ...., max]
* Constructs a vector [min, min+1, ...., max-1]
*/
inline std::vector<uint_fast64_t> buildVectorForRange(uint_fast64_t min, uint_fast64_t max) {
STORM_LOG_ASSERT(min < max, "Invalid range.");
@ -336,7 +336,7 @@ namespace storm {
}
/*!
* Subtracts the two given vectors and writes the result into the first operand.
* Multiplies each element of the given vector with the given factor and writes the result into the vector.
*
* @param target The first summand and target vector.
* @param summand The second summand.

Loading…
Cancel
Save