Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix comment.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 27 Apr 2023 09:28:08 +0000 (11:28 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Thu, 27 Apr 2023 09:28:08 +0000 (11:28 +0200)
src/mc/explo/DFSExplorer.cpp

index cfacee4..3a99ca5 100644 (file)
@@ -151,7 +151,7 @@ void DFSExplorer::run()
 #endif
 
     // Search for the next transition
-    // next_transition returns a pair<aid_t, double> in case we want to consider multiple state (eg. during backtrack)
+    // next_transition returns a pair<aid_t, int> in case we want to consider multiple state (eg. during backtrack)
     auto [next, _] = state->next_transition_guided();
 
     if (next < 0) { // If there is no more transition in the current state, backtrack.