Skip to content

Commit

Permalink
remove unnecessary prints
Browse files Browse the repository at this point in the history
  • Loading branch information
gsingh committed Jun 18, 2019
1 parent e824898 commit 3be0c7e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions zonoml/zonoml_fun.c
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,8 @@ elina_abstract0_t* ffn_matmult_zono(elina_manager_t * man, bool destructive, eli
zonotope_internal_t* pr = zonotope_init_from_manager(man, ELINA_FUNID_ASSIGN_LINEXPR_ARRAY);
zonotope_t *z = zonotope_of_abstract0(element);
zonotope_t* res = zonotope_copy(man, z);
//printf("input\n");
//zonotope_fprint(stdout,man,res,NULL);
size_t i = 0;
for (i=0; i<res->dims; i++) {
res->paf[i]->itv_inf = res->box_inf[i];
Expand All @@ -235,6 +237,8 @@ elina_abstract0_t* ffn_matmult_zono(elina_manager_t * man, bool destructive, eli
man->result.flag_best = false;
man->result.flag_exact = false;
record_timing(zonoml_ffn_matmult_time);
//printf("Output\n");
//zonotope_fprint(stdout,man,res,NULL);
return abstract0_of_zonotope(man,res);
}

Expand Down

0 comments on commit 3be0c7e

Please sign in to comment.