summaryrefslogtreecommitdiffstats
path: root/src/dep_graph.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dep_graph.c')
-rw-r--r--src/dep_graph.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/dep_graph.c b/src/dep_graph.c
index cc30814..fe245b6 100644
--- a/src/dep_graph.c
+++ b/src/dep_graph.c
@@ -517,6 +517,7 @@ int All_vertexs_of_edges_visited(struct edgeTag * e) {
* \return none
*/
void EvalBottomUp() {
+ /*
struct ent * p;
vertexT * temp = graph->vertices;
@@ -545,14 +546,15 @@ void EvalBottomUp() {
temp = temp->next;
- /*
- if (temp == NULL && evaluated) { //end of cycle. if evaluated a vertex in this loop, loop again
- //sc_debug("recycle");
- evaluated = 0;
- temp = graph->vertices;
- } else if (temp == NULL) return;*/
+ //
+ //if (temp == NULL && evaluated) { //end of cycle. if evaluated a vertex in this loop, loop again
+ // //sc_debug("recycle");
+ // evaluated = 0;
+ // temp = graph->vertices;
+ //} else if (temp == NULL) return;
}
//sc_debug("fin eval");
+ */
}