diff --git a/src/models/AbstractModel.h b/src/models/AbstractModel.h index 294ab714e..6516884a8 100644 --- a/src/models/AbstractModel.h +++ b/src/models/AbstractModel.h @@ -42,11 +42,11 @@ class AbstractModel: public std::enable_shared_from_this> { * @param other The Source Abstract Model */ AbstractModel(AbstractModel const& other) - : transitionMatrix(other.transitionMatrix), + : transitionMatrix(other.transitionMatrix), + choiceLabeling(other.choiceLabeling), stateLabeling(other.stateLabeling), stateRewardVector(other.stateRewardVector), - transitionRewardMatrix(other.transitionRewardMatrix), - choiceLabeling(other.choiceLabeling) { + transitionRewardMatrix(other.transitionRewardMatrix) { // Intentionally left empty. }