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
 1759 	if (isl_set_n_dim(set) == 0)
 1760 		return convex_hull_0d(set);
 1762 	set = isl_set_coalesce(set);
 1762 	set = isl_set_coalesce(set);
 1763 	set = isl_set_set_rational(set);
 1763 	set = isl_set_set_rational(set);
 1765 	if (!set)
 1767 	if (set->n == 1) {
 1768 		convex_hull = isl_basic_set_copy(set->p[0]);
 1769 		isl_set_free(set);
 1772 	if (isl_set_n_dim(set) == 1)
 1773 		return convex_hull_1d(set);
 1775 	bounded = isl_set_is_bounded(set);
 1778 	if (bounded && set->ctx->opt->convex == ISL_CONVEX_HULL_WRAP)
 1779 		return uset_convex_hull_wrap(set);
 1781 	lin = isl_set_combined_lineality_space(isl_set_copy(set));
 1785 		isl_set_free(set);
 1789 		return modulo_lineality(set, lin);
 1792 	return uset_convex_hull_unbounded(set);
 1794 	isl_set_free(set);