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

References

tools/polly/lib/External/isl/isl_convex_hull.c
   56 	if (!bmap)
   59 	bmap = isl_basic_map_gauss(bmap, NULL);
   59 	bmap = isl_basic_map_gauss(bmap, NULL);
   60 	if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
   61 		return bmap;
   62 	if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NO_REDUNDANT))
   63 		return bmap;
   64 	if (bmap->n_ineq <= 1)
   65 		return bmap;
   67 	bmap = isl_basic_map_sort_constraints(bmap);
   67 	bmap = isl_basic_map_sort_constraints(bmap);
   68 	tab = isl_tab_from_basic_map(bmap, 0);
   79 	bmap = isl_basic_map_update_from_tab(bmap, tab);
   79 	bmap = isl_basic_map_update_from_tab(bmap, tab);
   81 	if (!bmap)
   83 	ISL_F_SET(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
   84 	ISL_F_SET(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
   85 	return bmap;
   88 	isl_basic_map_free(bmap);