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

References

tools/polly/lib/External/isl/isl_equalities.c
  192 	T = isl_mat_sub_alloc(A, 0, A->n_row, 0, A->n_row);
  193 	T = isl_mat_lin_to_aff(T);
  193 	T = isl_mat_lin_to_aff(T);
  194 	if (!T)
  196 	isl_int_set(T->row[0][0], D);
  197 	T = isl_mat_right_inverse(T);
  197 	T = isl_mat_right_inverse(T);
  198 	if (!T)
  200 	isl_assert(T->ctx, isl_int_is_one(T->row[0][0]), goto error);
  200 	isl_assert(T->ctx, isl_int_is_one(T->row[0][0]), goto error);
  201 	T = isl_mat_transpose(T);
  201 	T = isl_mat_transpose(T);
  206 	return T;