Remove checkpoint tracing.
This feature is not necessary anymore since we have tools like valgrind today that can catch stack overflow errors before they make a backtrace in gdb impossible.
This commit is contained in:
parent
5dde6461a3
commit
a227843b73
31 changed files with 1 additions and 471 deletions
|
|
@ -73,8 +73,6 @@ void mst_kruskal(void) {
|
|||
int safe_edges = 0;
|
||||
bool skipped;
|
||||
|
||||
cp();
|
||||
|
||||
/* Clear MST status on connections */
|
||||
|
||||
for(node = connection_tree->head; node; node = node->next) {
|
||||
|
|
@ -159,8 +157,6 @@ void sssp_bfs(void) {
|
|||
char *envp[7];
|
||||
int i;
|
||||
|
||||
cp();
|
||||
|
||||
todo_list = list_alloc(NULL);
|
||||
|
||||
/* Clear visited status on nodes */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue