diff options
Diffstat (limited to '')
| -rw-r--r-- | src/cycle_detection.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/cycle_detection.h b/src/cycle_detection.h index e5e0220..9914435 100644 --- a/src/cycle_detection.h +++ b/src/cycle_detection.h @@ -17,9 +17,10 @@ * @param g Pointer to the directed graph to analyze. * Must not be NULL. * - * @details Prints to stdout whether the given graph has a cycle. In that case - * in prints 'CYCLE DETECTED!', else it prints the graph in - * topological sorting i.e. '4, 0, 1, 3, 2'. + * @details Prints to stdout whether the given graph has a cycle; + * in that case in prints 'CYCLE DETECTED!', + * else it prints the graph in topological sorting + * i.e. '4, 0, 1, 3, 2'. * * @note The input graph @p g may be modified during execution. The function * alters vertex in-degree counts and neighbor lists as part of the |