From 88101ef23824026b88683e2a06de38b8b779c343 Mon Sep 17 00:00:00 2001 From: dehnert Date: Wed, 14 Nov 2012 12:57:13 +0100 Subject: [PATCH] Fixed comment typo. --- src/models/dtmc.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/models/dtmc.h b/src/models/dtmc.h index 516f43b3b..d337951e1 100644 --- a/src/models/dtmc.h +++ b/src/models/dtmc.h @@ -21,12 +21,11 @@ namespace models { class Dtmc { public: - //! Constructor - /*! + /*! \param probability_matrix The transition probability function of the DTMC given by a matrix. \param state_labeling The labeling that assigns a set of atomic propositions to each state. - */ + */ Dtmc(mrmc::sparse::StaticSparseMatrix* probability_matrix, mrmc::models::Labeling* state_labeling) { this->probability_matrix = probability_matrix; @@ -36,13 +35,12 @@ public: //! Copy Constructor /*! Copy Constructor. Creates an exact copy of the source DTMC. Modification of either DTMC does not affect the other. - @param dtmc A reference to the matrix that should be copied from + @param dtmc A reference to the DTMC that is to be copied. */ Dtmc(const Dtmc &dtmc) : probability_matrix(dtmc.probability_matrix), state_labeling(dtmc.state_labeling) { // intentionally left empty } - private: mrmc::sparse::StaticSparseMatrix* probability_matrix;