diff --git a/prism/src/prism/ProbModel.java b/prism/src/prism/ProbModel.java
index e9633372..a3889871 100644
--- a/prism/src/prism/ProbModel.java
+++ b/prism/src/prism/ProbModel.java
@@ -447,9 +447,12 @@ public class ProbModel implements Model
}
/**
- * Reset transition matrix DD
+ * Reset transition matrix DD.
+ * Note: Update reachable states and call {@code filterReachableStates}
+ * afterwards to update related information (trans01, odd, etc).
+ *
+ *
[ STORES: trans, DEREFS: old transition matrix DD ]
*/
-
public void resetTrans(JDDNode trans)
{
if (this.trans != null)
@@ -458,9 +461,10 @@ public class ProbModel implements Model
}
/**
- * Reset transition rewards DDs
+ * Reset transition rewards DD for reward with index i.
+ *
+ *
[ STORES: transRewards, DEREFS: old trans reward DD ]
*/
-
public void resetTransRewards(int i, JDDNode transRewards)
{
if (this.transRewards[i] != null) {