reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/polly/lib/External/isl/isl_affine_hull.c
  207 	row = 0;
  209 		int is_zero1 = row >= bset1->n_eq ||
  210 			isl_int_is_zero(bset1->eq[row][col]);
  211 		int is_zero2 = row >= bset2->n_eq ||
  212 			isl_int_is_zero(bset2->eq[row][col]);
  214 			set_common_multiple(bset1, bset2, row, col);
  215 			++row;
  217 			construct_column(bset1, bset2, row, col);
  219 			construct_column(bset2, bset1, row, col);
  221 			if (transform_column(bset1, bset2, row, col))
  222 				--row;
  225 	isl_assert(bset1->ctx, row == bset1->n_eq, goto error);