pub struct Set {
pub ptr: uintptr_t,
pub should_free_on_drop: bool,
}Expand description
Wraps isl_set.
Fields§
§ptr: uintptr_t§should_free_on_drop: boolImplementations§
Source§impl Set
impl Set
Sourcepub fn add_constraint(self, constraint: Constraint) -> Result<Set, LibISLError>
pub fn add_constraint(self, constraint: Constraint) -> Result<Set, LibISLError>
Wraps isl_set_add_constraint.
Sourcepub fn add_dims(self, type_: DimType, n: u32) -> Result<Set, LibISLError>
pub fn add_dims(self, type_: DimType, n: u32) -> Result<Set, LibISLError>
Wraps isl_set_add_dims.
Sourcepub fn affine_hull(self) -> Result<BasicSet, LibISLError>
pub fn affine_hull(self) -> Result<BasicSet, LibISLError>
Wraps isl_set_affine_hull.
Sourcepub fn align_divs(self) -> Result<Set, LibISLError>
pub fn align_divs(self) -> Result<Set, LibISLError>
Wraps isl_set_align_divs.
Sourcepub fn align_params(self, model: Space) -> Result<Set, LibISLError>
pub fn align_params(self, model: Space) -> Result<Set, LibISLError>
Wraps isl_set_align_params.
Sourcepub fn as_pw_multi_aff(self) -> Result<PwMultiAff, LibISLError>
pub fn as_pw_multi_aff(self) -> Result<PwMultiAff, LibISLError>
Wraps isl_set_as_pw_multi_aff.
Sourcepub fn bounded_simple_hull(self) -> Result<BasicSet, LibISLError>
pub fn bounded_simple_hull(self) -> Result<BasicSet, LibISLError>
Wraps isl_set_bounded_simple_hull.
Sourcepub fn box_from_points(pnt1: Point, pnt2: Point) -> Result<Set, LibISLError>
pub fn box_from_points(pnt1: Point, pnt2: Point) -> Result<Set, LibISLError>
Wraps isl_set_box_from_points.
Sourcepub fn coalesce(self) -> Result<Set, LibISLError>
pub fn coalesce(self) -> Result<Set, LibISLError>
Wraps isl_set_coalesce.
Sourcepub fn coefficients(self) -> Result<BasicSet, LibISLError>
pub fn coefficients(self) -> Result<BasicSet, LibISLError>
Wraps isl_set_coefficients.
Sourcepub fn complement(self) -> Result<Set, LibISLError>
pub fn complement(self) -> Result<Set, LibISLError>
Wraps isl_set_complement.
Sourcepub fn compute_divs(self) -> Result<Set, LibISLError>
pub fn compute_divs(self) -> Result<Set, LibISLError>
Wraps isl_set_compute_divs.
Sourcepub fn convex_hull(self) -> Result<BasicSet, LibISLError>
pub fn convex_hull(self) -> Result<BasicSet, LibISLError>
Wraps isl_set_convex_hull.
Sourcepub fn copy(&self) -> Result<Set, LibISLError>
pub fn copy(&self) -> Result<Set, LibISLError>
Wraps isl_set_copy.
Sourcepub fn count_val(&self) -> Result<Val, LibISLError>
pub fn count_val(&self) -> Result<Val, LibISLError>
Wraps isl_set_count_val.
Sourcepub fn detect_equalities(self) -> Result<Set, LibISLError>
pub fn detect_equalities(self) -> Result<Set, LibISLError>
Wraps isl_set_detect_equalities.
Sourcepub fn dim_has_any_lower_bound(
&self,
type_: DimType,
pos: u32,
) -> Result<bool, LibISLError>
pub fn dim_has_any_lower_bound( &self, type_: DimType, pos: u32, ) -> Result<bool, LibISLError>
Wraps isl_set_dim_has_any_lower_bound.
Sourcepub fn dim_has_any_upper_bound(
&self,
type_: DimType,
pos: u32,
) -> Result<bool, LibISLError>
pub fn dim_has_any_upper_bound( &self, type_: DimType, pos: u32, ) -> Result<bool, LibISLError>
Wraps isl_set_dim_has_any_upper_bound.
Sourcepub fn dim_has_lower_bound(
&self,
type_: DimType,
pos: u32,
) -> Result<bool, LibISLError>
pub fn dim_has_lower_bound( &self, type_: DimType, pos: u32, ) -> Result<bool, LibISLError>
Wraps isl_set_dim_has_lower_bound.
Sourcepub fn dim_has_upper_bound(
&self,
type_: DimType,
pos: u32,
) -> Result<bool, LibISLError>
pub fn dim_has_upper_bound( &self, type_: DimType, pos: u32, ) -> Result<bool, LibISLError>
Wraps isl_set_dim_has_upper_bound.
Sourcepub fn dim_is_bounded(
&self,
type_: DimType,
pos: u32,
) -> Result<bool, LibISLError>
pub fn dim_is_bounded( &self, type_: DimType, pos: u32, ) -> Result<bool, LibISLError>
Wraps isl_set_dim_is_bounded.
Sourcepub fn dim_max_val(self, pos: i32) -> Result<Val, LibISLError>
pub fn dim_max_val(self, pos: i32) -> Result<Val, LibISLError>
Wraps isl_set_dim_max_val.
Sourcepub fn dim_min_val(self, pos: i32) -> Result<Val, LibISLError>
pub fn dim_min_val(self, pos: i32) -> Result<Val, LibISLError>
Wraps isl_set_dim_min_val.
Sourcepub fn drop_constraints_involving_dims(
self,
type_: DimType,
first: u32,
n: u32,
) -> Result<Set, LibISLError>
pub fn drop_constraints_involving_dims( self, type_: DimType, first: u32, n: u32, ) -> Result<Set, LibISLError>
Wraps isl_set_drop_constraints_involving_dims.
Sourcepub fn drop_constraints_not_involving_dims(
self,
type_: DimType,
first: u32,
n: u32,
) -> Result<Set, LibISLError>
pub fn drop_constraints_not_involving_dims( self, type_: DimType, first: u32, n: u32, ) -> Result<Set, LibISLError>
Wraps isl_set_drop_constraints_not_involving_dims.
Sourcepub fn drop_unused_params(self) -> Result<Set, LibISLError>
pub fn drop_unused_params(self) -> Result<Set, LibISLError>
Wraps isl_set_drop_unused_params.
Sourcepub fn dump(&self) -> Result<(), LibISLError>
pub fn dump(&self) -> Result<(), LibISLError>
Wraps isl_set_dump.
Sourcepub fn eliminate(
self,
type_: DimType,
first: u32,
n: u32,
) -> Result<Set, LibISLError>
pub fn eliminate( self, type_: DimType, first: u32, n: u32, ) -> Result<Set, LibISLError>
Wraps isl_set_eliminate.
Sourcepub fn eliminate_dims(self, first: u32, n: u32) -> Result<Set, LibISLError>
pub fn eliminate_dims(self, first: u32, n: u32) -> Result<Set, LibISLError>
Wraps isl_set_eliminate_dims.
Sourcepub fn equate(
self,
type1: DimType,
pos1: i32,
type2: DimType,
pos2: i32,
) -> Result<Set, LibISLError>
pub fn equate( self, type1: DimType, pos1: i32, type2: DimType, pos2: i32, ) -> Result<Set, LibISLError>
Wraps isl_set_equate.
Sourcepub fn find_dim_by_id(
&self,
type_: DimType,
id: &Id,
) -> Result<i32, LibISLError>
pub fn find_dim_by_id( &self, type_: DimType, id: &Id, ) -> Result<i32, LibISLError>
Wraps isl_set_find_dim_by_id.
Sourcepub fn find_dim_by_name(
&self,
type_: DimType,
name: &str,
) -> Result<i32, LibISLError>
pub fn find_dim_by_name( &self, type_: DimType, name: &str, ) -> Result<i32, LibISLError>
Wraps isl_set_find_dim_by_name.
Sourcepub fn fix_dim_si(self, dim: u32, value: i32) -> Result<Set, LibISLError>
pub fn fix_dim_si(self, dim: u32, value: i32) -> Result<Set, LibISLError>
Wraps isl_set_fix_dim_si.
Sourcepub fn fix_si(
self,
type_: DimType,
pos: u32,
value: i32,
) -> Result<Set, LibISLError>
pub fn fix_si( self, type_: DimType, pos: u32, value: i32, ) -> Result<Set, LibISLError>
Wraps isl_set_fix_si.
Sourcepub fn fix_val(
self,
type_: DimType,
pos: u32,
v: Val,
) -> Result<Set, LibISLError>
pub fn fix_val( self, type_: DimType, pos: u32, v: Val, ) -> Result<Set, LibISLError>
Wraps isl_set_fix_val.
Sourcepub fn flat_product(self, set2: Set) -> Result<Set, LibISLError>
pub fn flat_product(self, set2: Set) -> Result<Set, LibISLError>
Wraps isl_set_flat_product.
Sourcepub fn flatten(self) -> Result<Set, LibISLError>
pub fn flatten(self) -> Result<Set, LibISLError>
Wraps isl_set_flatten.
Sourcepub fn flatten_map(self) -> Result<Map, LibISLError>
pub fn flatten_map(self) -> Result<Map, LibISLError>
Wraps isl_set_flatten_map.
Sourcepub fn follows_at(&self, set2: &Set, pos: i32) -> Result<i32, LibISLError>
pub fn follows_at(&self, set2: &Set, pos: i32) -> Result<i32, LibISLError>
Wraps isl_set_follows_at.
Sourcepub fn free(self) -> Result<Set, LibISLError>
pub fn free(self) -> Result<Set, LibISLError>
Wraps isl_set_free.
Sourcepub fn from_basic_set(bset: BasicSet) -> Result<Set, LibISLError>
pub fn from_basic_set(bset: BasicSet) -> Result<Set, LibISLError>
Wraps isl_set_from_basic_set.
Sourcepub fn from_multi_aff(ma: MultiAff) -> Result<Set, LibISLError>
pub fn from_multi_aff(ma: MultiAff) -> Result<Set, LibISLError>
Wraps isl_set_from_multi_aff.
Sourcepub fn from_multi_pw_aff(mpa: MultiPwAff) -> Result<Set, LibISLError>
pub fn from_multi_pw_aff(mpa: MultiPwAff) -> Result<Set, LibISLError>
Wraps isl_set_from_multi_pw_aff.
Sourcepub fn from_params(self) -> Result<Set, LibISLError>
pub fn from_params(self) -> Result<Set, LibISLError>
Wraps isl_set_from_params.
Sourcepub fn from_point(pnt: Point) -> Result<Set, LibISLError>
pub fn from_point(pnt: Point) -> Result<Set, LibISLError>
Wraps isl_set_from_point.
Sourcepub fn from_pw_aff(pwaff: PwAff) -> Result<Set, LibISLError>
pub fn from_pw_aff(pwaff: PwAff) -> Result<Set, LibISLError>
Wraps isl_set_from_pw_aff.
Sourcepub fn from_pw_multi_aff(pma: PwMultiAff) -> Result<Set, LibISLError>
pub fn from_pw_multi_aff(pma: PwMultiAff) -> Result<Set, LibISLError>
Wraps isl_set_from_pw_multi_aff.
Sourcepub fn from_union_set(uset: UnionSet) -> Result<Set, LibISLError>
pub fn from_union_set(uset: UnionSet) -> Result<Set, LibISLError>
Wraps isl_set_from_union_set.
Sourcepub fn get_basic_set_list(&self) -> Result<BasicSetList, LibISLError>
pub fn get_basic_set_list(&self) -> Result<BasicSetList, LibISLError>
Wraps isl_set_get_basic_set_list.
Sourcepub fn get_dim_id(&self, type_: DimType, pos: u32) -> Result<Id, LibISLError>
pub fn get_dim_id(&self, type_: DimType, pos: u32) -> Result<Id, LibISLError>
Wraps isl_set_get_dim_id.
Sourcepub fn get_dim_name(
&self,
type_: DimType,
pos: u32,
) -> Result<&str, LibISLError>
pub fn get_dim_name( &self, type_: DimType, pos: u32, ) -> Result<&str, LibISLError>
Wraps isl_set_get_dim_name.
Sourcepub fn get_hash(&self) -> Result<u32, LibISLError>
pub fn get_hash(&self) -> Result<u32, LibISLError>
Wraps isl_set_get_hash.
Sourcepub fn get_lattice_tile(&self) -> Result<FixedBox, LibISLError>
pub fn get_lattice_tile(&self) -> Result<FixedBox, LibISLError>
Wraps isl_set_get_lattice_tile.
Sourcepub fn get_plain_multi_val_if_fixed(&self) -> Result<MultiVal, LibISLError>
pub fn get_plain_multi_val_if_fixed(&self) -> Result<MultiVal, LibISLError>
Wraps isl_set_get_plain_multi_val_if_fixed.
Sourcepub fn get_simple_fixed_box_hull(&self) -> Result<FixedBox, LibISLError>
pub fn get_simple_fixed_box_hull(&self) -> Result<FixedBox, LibISLError>
Wraps isl_set_get_simple_fixed_box_hull.
Sourcepub fn get_space(&self) -> Result<Space, LibISLError>
pub fn get_space(&self) -> Result<Space, LibISLError>
Wraps isl_set_get_space.
Sourcepub fn get_stride(&self, pos: i32) -> Result<Val, LibISLError>
pub fn get_stride(&self, pos: i32) -> Result<Val, LibISLError>
Wraps isl_set_get_stride.
Sourcepub fn get_stride_info(&self, pos: i32) -> Result<StrideInfo, LibISLError>
pub fn get_stride_info(&self, pos: i32) -> Result<StrideInfo, LibISLError>
Wraps isl_set_get_stride_info.
Sourcepub fn get_tuple_id(&self) -> Result<Id, LibISLError>
pub fn get_tuple_id(&self) -> Result<Id, LibISLError>
Wraps isl_set_get_tuple_id.
Sourcepub fn get_tuple_name(&self) -> Result<&str, LibISLError>
pub fn get_tuple_name(&self) -> Result<&str, LibISLError>
Wraps isl_set_get_tuple_name.
Sourcepub fn gist_basic_set(self, context: BasicSet) -> Result<Set, LibISLError>
pub fn gist_basic_set(self, context: BasicSet) -> Result<Set, LibISLError>
Wraps isl_set_gist_basic_set.
Sourcepub fn gist_params(self, context: Set) -> Result<Set, LibISLError>
pub fn gist_params(self, context: Set) -> Result<Set, LibISLError>
Wraps isl_set_gist_params.
Sourcepub fn has_dim_id(&self, type_: DimType, pos: u32) -> Result<bool, LibISLError>
pub fn has_dim_id(&self, type_: DimType, pos: u32) -> Result<bool, LibISLError>
Wraps isl_set_has_dim_id.
Sourcepub fn has_dim_name(
&self,
type_: DimType,
pos: u32,
) -> Result<bool, LibISLError>
pub fn has_dim_name( &self, type_: DimType, pos: u32, ) -> Result<bool, LibISLError>
Wraps isl_set_has_dim_name.
Sourcepub fn has_equal_space(&self, set2: &Set) -> Result<bool, LibISLError>
pub fn has_equal_space(&self, set2: &Set) -> Result<bool, LibISLError>
Wraps isl_set_has_equal_space.
Sourcepub fn has_tuple_id(&self) -> Result<bool, LibISLError>
pub fn has_tuple_id(&self) -> Result<bool, LibISLError>
Wraps isl_set_has_tuple_id.
Sourcepub fn has_tuple_name(&self) -> Result<bool, LibISLError>
pub fn has_tuple_name(&self) -> Result<bool, LibISLError>
Wraps isl_set_has_tuple_name.
Sourcepub fn identity(self) -> Result<Map, LibISLError>
pub fn identity(self) -> Result<Map, LibISLError>
Wraps isl_set_identity.
Sourcepub fn indicator_function(self) -> Result<PwAff, LibISLError>
pub fn indicator_function(self) -> Result<PwAff, LibISLError>
Wraps isl_set_indicator_function.
Sourcepub fn insert_dims(
self,
type_: DimType,
pos: u32,
n: u32,
) -> Result<Set, LibISLError>
pub fn insert_dims( self, type_: DimType, pos: u32, n: u32, ) -> Result<Set, LibISLError>
Wraps isl_set_insert_dims.
Sourcepub fn insert_domain(self, domain: Space) -> Result<Map, LibISLError>
pub fn insert_domain(self, domain: Space) -> Result<Map, LibISLError>
Wraps isl_set_insert_domain.
Sourcepub fn intersect_factor_domain(self, domain: Set) -> Result<Set, LibISLError>
pub fn intersect_factor_domain(self, domain: Set) -> Result<Set, LibISLError>
Wraps isl_set_intersect_factor_domain.
Sourcepub fn intersect_factor_range(self, range: Set) -> Result<Set, LibISLError>
pub fn intersect_factor_range(self, range: Set) -> Result<Set, LibISLError>
Wraps isl_set_intersect_factor_range.
Sourcepub fn intersect_params(self, params: Set) -> Result<Set, LibISLError>
pub fn intersect_params(self, params: Set) -> Result<Set, LibISLError>
Wraps isl_set_intersect_params.
Sourcepub fn involves_dims(
&self,
type_: DimType,
first: u32,
n: u32,
) -> Result<bool, LibISLError>
pub fn involves_dims( &self, type_: DimType, first: u32, n: u32, ) -> Result<bool, LibISLError>
Wraps isl_set_involves_dims.
Sourcepub fn involves_locals(&self) -> Result<bool, LibISLError>
pub fn involves_locals(&self) -> Result<bool, LibISLError>
Wraps isl_set_involves_locals.
Sourcepub fn is_bounded(&self) -> Result<bool, LibISLError>
pub fn is_bounded(&self) -> Result<bool, LibISLError>
Wraps isl_set_is_bounded.
Sourcepub fn is_box(&self) -> Result<bool, LibISLError>
pub fn is_box(&self) -> Result<bool, LibISLError>
Wraps isl_set_is_box.
Sourcepub fn is_disjoint(&self, set2: &Set) -> Result<bool, LibISLError>
pub fn is_disjoint(&self, set2: &Set) -> Result<bool, LibISLError>
Wraps isl_set_is_disjoint.
Sourcepub fn is_empty(&self) -> Result<bool, LibISLError>
pub fn is_empty(&self) -> Result<bool, LibISLError>
Wraps isl_set_is_empty.
Sourcepub fn is_params(&self) -> Result<bool, LibISLError>
pub fn is_params(&self) -> Result<bool, LibISLError>
Wraps isl_set_is_params.
Sourcepub fn is_singleton(&self) -> Result<bool, LibISLError>
pub fn is_singleton(&self) -> Result<bool, LibISLError>
Wraps isl_set_is_singleton.
Sourcepub fn is_strict_subset(&self, set2: &Set) -> Result<bool, LibISLError>
pub fn is_strict_subset(&self, set2: &Set) -> Result<bool, LibISLError>
Wraps isl_set_is_strict_subset.
Sourcepub fn is_wrapping(&self) -> Result<bool, LibISLError>
pub fn is_wrapping(&self) -> Result<bool, LibISLError>
Wraps isl_set_is_wrapping.
Sourcepub fn lex_ge_set(self, set2: Set) -> Result<Map, LibISLError>
pub fn lex_ge_set(self, set2: Set) -> Result<Map, LibISLError>
Wraps isl_set_lex_ge_set.
Sourcepub fn lex_gt_set(self, set2: Set) -> Result<Map, LibISLError>
pub fn lex_gt_set(self, set2: Set) -> Result<Map, LibISLError>
Wraps isl_set_lex_gt_set.
Sourcepub fn lex_le_set(self, set2: Set) -> Result<Map, LibISLError>
pub fn lex_le_set(self, set2: Set) -> Result<Map, LibISLError>
Wraps isl_set_lex_le_set.
Sourcepub fn lex_lt_set(self, set2: Set) -> Result<Map, LibISLError>
pub fn lex_lt_set(self, set2: Set) -> Result<Map, LibISLError>
Wraps isl_set_lex_lt_set.
Sourcepub fn lexmax(self) -> Result<Set, LibISLError>
pub fn lexmax(self) -> Result<Set, LibISLError>
Wraps isl_set_lexmax.
Sourcepub fn lexmax_pw_multi_aff(self) -> Result<PwMultiAff, LibISLError>
pub fn lexmax_pw_multi_aff(self) -> Result<PwMultiAff, LibISLError>
Wraps isl_set_lexmax_pw_multi_aff.
Sourcepub fn lexmin(self) -> Result<Set, LibISLError>
pub fn lexmin(self) -> Result<Set, LibISLError>
Wraps isl_set_lexmin.
Sourcepub fn lexmin_pw_multi_aff(self) -> Result<PwMultiAff, LibISLError>
pub fn lexmin_pw_multi_aff(self) -> Result<PwMultiAff, LibISLError>
Wraps isl_set_lexmin_pw_multi_aff.
Sourcepub fn lift(self) -> Result<Set, LibISLError>
pub fn lift(self) -> Result<Set, LibISLError>
Wraps isl_set_lift.
Sourcepub fn lower_bound_multi_pw_aff(
self,
lower: MultiPwAff,
) -> Result<Set, LibISLError>
pub fn lower_bound_multi_pw_aff( self, lower: MultiPwAff, ) -> Result<Set, LibISLError>
Wraps isl_set_lower_bound_multi_pw_aff.
Sourcepub fn lower_bound_multi_val(self, lower: MultiVal) -> Result<Set, LibISLError>
pub fn lower_bound_multi_val(self, lower: MultiVal) -> Result<Set, LibISLError>
Wraps isl_set_lower_bound_multi_val.
Sourcepub fn lower_bound_si(
self,
type_: DimType,
pos: u32,
value: i32,
) -> Result<Set, LibISLError>
pub fn lower_bound_si( self, type_: DimType, pos: u32, value: i32, ) -> Result<Set, LibISLError>
Wraps isl_set_lower_bound_si.
Sourcepub fn lower_bound_val(
self,
type_: DimType,
pos: u32,
value: Val,
) -> Result<Set, LibISLError>
pub fn lower_bound_val( self, type_: DimType, pos: u32, value: Val, ) -> Result<Set, LibISLError>
Wraps isl_set_lower_bound_val.
Sourcepub fn make_disjoint(self) -> Result<Set, LibISLError>
pub fn make_disjoint(self) -> Result<Set, LibISLError>
Wraps isl_set_make_disjoint.
Sourcepub fn max_multi_pw_aff(self) -> Result<MultiPwAff, LibISLError>
pub fn max_multi_pw_aff(self) -> Result<MultiPwAff, LibISLError>
Wraps isl_set_max_multi_pw_aff.
Sourcepub fn min_multi_pw_aff(self) -> Result<MultiPwAff, LibISLError>
pub fn min_multi_pw_aff(self) -> Result<MultiPwAff, LibISLError>
Wraps isl_set_min_multi_pw_aff.
Sourcepub fn move_dims(
self,
dst_type: DimType,
dst_pos: u32,
src_type: DimType,
src_pos: u32,
n: u32,
) -> Result<Set, LibISLError>
pub fn move_dims( self, dst_type: DimType, dst_pos: u32, src_type: DimType, src_pos: u32, n: u32, ) -> Result<Set, LibISLError>
Wraps isl_set_move_dims.
Sourcepub fn n_basic_set(&self) -> Result<i32, LibISLError>
pub fn n_basic_set(&self) -> Result<i32, LibISLError>
Wraps isl_set_n_basic_set.
Sourcepub fn n_dim(&self) -> Result<i32, LibISLError>
pub fn n_dim(&self) -> Result<i32, LibISLError>
Wraps isl_set_n_dim.
Sourcepub fn n_param(&self) -> Result<i32, LibISLError>
pub fn n_param(&self) -> Result<i32, LibISLError>
Wraps isl_set_n_param.
Sourcepub fn nat_universe(space: Space) -> Result<Set, LibISLError>
pub fn nat_universe(space: Space) -> Result<Set, LibISLError>
Wraps isl_set_nat_universe.
Sourcepub fn neg(self) -> Result<Set, LibISLError>
pub fn neg(self) -> Result<Set, LibISLError>
Wraps isl_set_neg.
Sourcepub fn param_pw_aff_on_domain_id(self, id: Id) -> Result<PwAff, LibISLError>
pub fn param_pw_aff_on_domain_id(self, id: Id) -> Result<PwAff, LibISLError>
Wraps isl_set_param_pw_aff_on_domain_id.
Sourcepub fn params(self) -> Result<Set, LibISLError>
pub fn params(self) -> Result<Set, LibISLError>
Wraps isl_set_params.
Sourcepub fn plain_get_val_if_fixed(
&self,
type_: DimType,
pos: u32,
) -> Result<Val, LibISLError>
pub fn plain_get_val_if_fixed( &self, type_: DimType, pos: u32, ) -> Result<Val, LibISLError>
Wraps isl_set_plain_get_val_if_fixed.
Sourcepub fn plain_is_disjoint(&self, set2: &Set) -> Result<bool, LibISLError>
pub fn plain_is_disjoint(&self, set2: &Set) -> Result<bool, LibISLError>
Wraps isl_set_plain_is_disjoint.
Sourcepub fn plain_is_empty(&self) -> Result<bool, LibISLError>
pub fn plain_is_empty(&self) -> Result<bool, LibISLError>
Wraps isl_set_plain_is_empty.
Sourcepub fn plain_is_equal(&self, set2: &Set) -> Result<bool, LibISLError>
pub fn plain_is_equal(&self, set2: &Set) -> Result<bool, LibISLError>
Wraps isl_set_plain_is_equal.
Sourcepub fn plain_is_universe(&self) -> Result<bool, LibISLError>
pub fn plain_is_universe(&self) -> Result<bool, LibISLError>
Wraps isl_set_plain_is_universe.
Sourcepub fn plain_unshifted_simple_hull(self) -> Result<BasicSet, LibISLError>
pub fn plain_unshifted_simple_hull(self) -> Result<BasicSet, LibISLError>
Wraps isl_set_plain_unshifted_simple_hull.
Sourcepub fn polyhedral_hull(self) -> Result<BasicSet, LibISLError>
pub fn polyhedral_hull(self) -> Result<BasicSet, LibISLError>
Wraps isl_set_polyhedral_hull.
Sourcepub fn preimage_multi_aff(self, ma: MultiAff) -> Result<Set, LibISLError>
pub fn preimage_multi_aff(self, ma: MultiAff) -> Result<Set, LibISLError>
Wraps isl_set_preimage_multi_aff.
Sourcepub fn preimage_multi_pw_aff(self, mpa: MultiPwAff) -> Result<Set, LibISLError>
pub fn preimage_multi_pw_aff(self, mpa: MultiPwAff) -> Result<Set, LibISLError>
Wraps isl_set_preimage_multi_pw_aff.
Sourcepub fn preimage_pw_multi_aff(self, pma: PwMultiAff) -> Result<Set, LibISLError>
pub fn preimage_pw_multi_aff(self, pma: PwMultiAff) -> Result<Set, LibISLError>
Wraps isl_set_preimage_pw_multi_aff.
Sourcepub fn project_onto_map(
self,
type_: DimType,
first: u32,
n: u32,
) -> Result<Map, LibISLError>
pub fn project_onto_map( self, type_: DimType, first: u32, n: u32, ) -> Result<Map, LibISLError>
Wraps isl_set_project_onto_map.
Sourcepub fn project_out(
self,
type_: DimType,
first: u32,
n: u32,
) -> Result<Set, LibISLError>
pub fn project_out( self, type_: DimType, first: u32, n: u32, ) -> Result<Set, LibISLError>
Wraps isl_set_project_out.
Sourcepub fn project_out_all_params(self) -> Result<Set, LibISLError>
pub fn project_out_all_params(self) -> Result<Set, LibISLError>
Wraps isl_set_project_out_all_params.
Sourcepub fn project_out_param_id(self, id: Id) -> Result<Set, LibISLError>
pub fn project_out_param_id(self, id: Id) -> Result<Set, LibISLError>
Wraps isl_set_project_out_param_id.
Sourcepub fn project_out_param_id_list(self, list: IdList) -> Result<Set, LibISLError>
pub fn project_out_param_id_list(self, list: IdList) -> Result<Set, LibISLError>
Wraps isl_set_project_out_param_id_list.
Sourcepub fn pw_aff_on_domain_val(self, v: Val) -> Result<PwAff, LibISLError>
pub fn pw_aff_on_domain_val(self, v: Val) -> Result<PwAff, LibISLError>
Wraps isl_set_pw_aff_on_domain_val.
Sourcepub fn pw_multi_aff_on_domain_multi_val(
self,
mv: MultiVal,
) -> Result<PwMultiAff, LibISLError>
pub fn pw_multi_aff_on_domain_multi_val( self, mv: MultiVal, ) -> Result<PwMultiAff, LibISLError>
Wraps isl_set_pw_multi_aff_on_domain_multi_val.
Sourcepub fn read_from_str(ctx: &Context, str_: &str) -> Result<Set, LibISLError>
pub fn read_from_str(ctx: &Context, str_: &str) -> Result<Set, LibISLError>
Wraps isl_set_read_from_str.
Sourcepub fn remove_dims(
self,
type_: DimType,
first: u32,
n: u32,
) -> Result<Set, LibISLError>
pub fn remove_dims( self, type_: DimType, first: u32, n: u32, ) -> Result<Set, LibISLError>
Wraps isl_set_remove_dims.
Sourcepub fn remove_divs(self) -> Result<Set, LibISLError>
pub fn remove_divs(self) -> Result<Set, LibISLError>
Wraps isl_set_remove_divs.
Sourcepub fn remove_divs_involving_dims(
self,
type_: DimType,
first: u32,
n: u32,
) -> Result<Set, LibISLError>
pub fn remove_divs_involving_dims( self, type_: DimType, first: u32, n: u32, ) -> Result<Set, LibISLError>
Wraps isl_set_remove_divs_involving_dims.
Sourcepub fn remove_redundancies(self) -> Result<Set, LibISLError>
pub fn remove_redundancies(self) -> Result<Set, LibISLError>
Wraps isl_set_remove_redundancies.
Sourcepub fn remove_unknown_divs(self) -> Result<Set, LibISLError>
pub fn remove_unknown_divs(self) -> Result<Set, LibISLError>
Wraps isl_set_remove_unknown_divs.
Sourcepub fn reset_space(self, space: Space) -> Result<Set, LibISLError>
pub fn reset_space(self, space: Space) -> Result<Set, LibISLError>
Wraps isl_set_reset_space.
Sourcepub fn reset_tuple_id(self) -> Result<Set, LibISLError>
pub fn reset_tuple_id(self) -> Result<Set, LibISLError>
Wraps isl_set_reset_tuple_id.
Sourcepub fn reset_user(self) -> Result<Set, LibISLError>
pub fn reset_user(self) -> Result<Set, LibISLError>
Wraps isl_set_reset_user.
Sourcepub fn sample(self) -> Result<BasicSet, LibISLError>
pub fn sample(self) -> Result<BasicSet, LibISLError>
Wraps isl_set_sample.
Sourcepub fn sample_point(self) -> Result<Point, LibISLError>
pub fn sample_point(self) -> Result<Point, LibISLError>
Wraps isl_set_sample_point.
Sourcepub fn set_dim_id(
self,
type_: DimType,
pos: u32,
id: Id,
) -> Result<Set, LibISLError>
pub fn set_dim_id( self, type_: DimType, pos: u32, id: Id, ) -> Result<Set, LibISLError>
Wraps isl_set_set_dim_id.
Sourcepub fn set_dim_name(
self,
type_: DimType,
pos: u32,
s: &str,
) -> Result<Set, LibISLError>
pub fn set_dim_name( self, type_: DimType, pos: u32, s: &str, ) -> Result<Set, LibISLError>
Wraps isl_set_set_dim_name.
Sourcepub fn set_tuple_id(self, id: Id) -> Result<Set, LibISLError>
pub fn set_tuple_id(self, id: Id) -> Result<Set, LibISLError>
Wraps isl_set_set_tuple_id.
Sourcepub fn set_tuple_name(self, s: &str) -> Result<Set, LibISLError>
pub fn set_tuple_name(self, s: &str) -> Result<Set, LibISLError>
Wraps isl_set_set_tuple_name.
Sourcepub fn simple_hull(self) -> Result<BasicSet, LibISLError>
pub fn simple_hull(self) -> Result<BasicSet, LibISLError>
Wraps isl_set_simple_hull.
Sourcepub fn size(&self) -> Result<i32, LibISLError>
pub fn size(&self) -> Result<i32, LibISLError>
Wraps isl_set_size.
Sourcepub fn solutions(self) -> Result<BasicSet, LibISLError>
pub fn solutions(self) -> Result<BasicSet, LibISLError>
Wraps isl_set_solutions.
Sourcepub fn split_dims(
self,
type_: DimType,
first: u32,
n: u32,
) -> Result<Set, LibISLError>
pub fn split_dims( self, type_: DimType, first: u32, n: u32, ) -> Result<Set, LibISLError>
Wraps isl_set_split_dims.
Sourcepub fn to_list(self) -> Result<SetList, LibISLError>
pub fn to_list(self) -> Result<SetList, LibISLError>
Wraps isl_set_to_list.
Sourcepub fn to_str(&self) -> Result<&str, LibISLError>
pub fn to_str(&self) -> Result<&str, LibISLError>
Wraps isl_set_to_str.
Sourcepub fn to_union_set(self) -> Result<UnionSet, LibISLError>
pub fn to_union_set(self) -> Result<UnionSet, LibISLError>
Wraps isl_set_to_union_set.
Sourcepub fn translation(self) -> Result<Map, LibISLError>
pub fn translation(self) -> Result<Map, LibISLError>
Wraps isl_set_translation.
Sourcepub fn tuple_dim(&self) -> Result<i32, LibISLError>
pub fn tuple_dim(&self) -> Result<i32, LibISLError>
Wraps isl_set_tuple_dim.
Sourcepub fn unbind_params(self, tuple: MultiId) -> Result<Set, LibISLError>
pub fn unbind_params(self, tuple: MultiId) -> Result<Set, LibISLError>
Wraps isl_set_unbind_params.
Sourcepub fn unbind_params_insert_domain(
self,
domain: MultiId,
) -> Result<Map, LibISLError>
pub fn unbind_params_insert_domain( self, domain: MultiId, ) -> Result<Map, LibISLError>
Wraps isl_set_unbind_params_insert_domain.
Sourcepub fn union_disjoint(self, set2: Set) -> Result<Set, LibISLError>
pub fn union_disjoint(self, set2: Set) -> Result<Set, LibISLError>
Wraps isl_set_union_disjoint.
Sourcepub fn unshifted_simple_hull(self) -> Result<BasicSet, LibISLError>
pub fn unshifted_simple_hull(self) -> Result<BasicSet, LibISLError>
Wraps isl_set_unshifted_simple_hull.
Sourcepub fn unshifted_simple_hull_from_set_list(
self,
list: SetList,
) -> Result<BasicSet, LibISLError>
pub fn unshifted_simple_hull_from_set_list( self, list: SetList, ) -> Result<BasicSet, LibISLError>
Wraps isl_set_unshifted_simple_hull_from_set_list.
Sourcepub fn unwrap(self) -> Result<Map, LibISLError>
pub fn unwrap(self) -> Result<Map, LibISLError>
Wraps isl_set_unwrap.
Sourcepub fn upper_bound_multi_pw_aff(
self,
upper: MultiPwAff,
) -> Result<Set, LibISLError>
pub fn upper_bound_multi_pw_aff( self, upper: MultiPwAff, ) -> Result<Set, LibISLError>
Wraps isl_set_upper_bound_multi_pw_aff.
Sourcepub fn upper_bound_multi_val(self, upper: MultiVal) -> Result<Set, LibISLError>
pub fn upper_bound_multi_val(self, upper: MultiVal) -> Result<Set, LibISLError>
Wraps isl_set_upper_bound_multi_val.
Sourcepub fn upper_bound_si(
self,
type_: DimType,
pos: u32,
value: i32,
) -> Result<Set, LibISLError>
pub fn upper_bound_si( self, type_: DimType, pos: u32, value: i32, ) -> Result<Set, LibISLError>
Wraps isl_set_upper_bound_si.
Sourcepub fn upper_bound_val(
self,
type_: DimType,
pos: u32,
value: Val,
) -> Result<Set, LibISLError>
pub fn upper_bound_val( self, type_: DimType, pos: u32, value: Val, ) -> Result<Set, LibISLError>
Wraps isl_set_upper_bound_val.
Sourcepub fn wrapped_domain_map(self) -> Result<Map, LibISLError>
pub fn wrapped_domain_map(self) -> Result<Map, LibISLError>
Wraps isl_set_wrapped_domain_map.
Sourcepub fn wrapped_reverse(self) -> Result<Set, LibISLError>
pub fn wrapped_reverse(self) -> Result<Set, LibISLError>
Wraps isl_set_wrapped_reverse.
Sourcepub fn do_not_free_on_drop(&mut self)
pub fn do_not_free_on_drop(&mut self)
Does not call isl_set_free() on being dropped. (For internal use only.)