Differences From:
File
tools/cvs2fossil/lib/c2f_cyclebreaker.tcl
part of check-in
[41d41c7b57]
- Added progress output to the code loading up the graph to traverse, nodes, and arcs.
by
aku on
2007-12-02 03:41:33.
[view]
To:
File
tools/cvs2fossil/lib/c2f_cyclebreaker.tcl
part of check-in
[487bb1c619]
- Modified loop check in cycle breaker to abort immediately on first looped changeset.
by
aku on
2007-12-02 06:18:42.
[view]
@@ -208,9 +208,9 @@
if {![$dg node exists $succ]} continue
$dg arc insert $cset $succ
if {$succ eq $cset} {
$cset loopcheck
- trouble fatal "[$cset str] depends on itself"
+ trouble internal "[$cset str] depends on itself"
}
}
incr n
}
@@ -432,9 +432,9 @@
if {![$dg node exists $succ]} continue
$dg arc insert $cset $succ
if {$succ eq $cset} {
$cset loopcheck
- trouble fatal "[$cset str] depends on itself"
+ trouble internal "[$cset str] depends on itself"
}
}
}
foreach cset $pre {