diff --git a/quad/src/computation_graph/computation_graph.c b/quad/src/computation_graph/computation_graph.c index 25f5b15f3eecdb033cf788aaa229acdbfc9dd03c..f0b602a61487c1c73e82cb49124c3ca5b9b903d3 100644 --- a/quad/src/computation_graph/computation_graph.c +++ b/quad/src/computation_graph/computation_graph.c @@ -188,10 +188,10 @@ double graph_get_output(const struct computation_graph *graph, int node_id, int * a valid node ID is passed in to the first call of this function */ void graph_compute_node_rec(struct computation_graph *graph, int node_id, int depth) { - if (depth >= GRAPH_MAX_DEPTH) { - assert(1 == 0); - return; - } + // if (depth >= GRAPH_MAX_DEPTH) { + // assert(1 == 0); + // return; + // } // if (!graph_node_exists(graph, node_id)) { // return; // }