File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -426,7 +426,6 @@ class Set(_NamedIslSetLike[isl.Set], _NamedIslUnbasic[isl.Set]):
426426 .. automethod:: dim_max
427427 .. automethod:: dim_min
428428 .. autoattribute:: var_pw_affs
429- .. autoattribute:: var_pw_aff
430429 .. automethod:: as_map
431430 .. automethod:: as_basic
432431 { _NamedIslSetLike .__doc__ }
@@ -473,14 +472,6 @@ def var_pw_affs(self) -> Mapping[str | Literal[0], PwAff]:
473472 from .expression_like import pw_affs_from_domain_space
474473 return pw_affs_from_domain_space (self .space )
475474
476- def var_pw_aff (self : Self , name : str ) -> PwAff :
477- """Return a :class:`PwAff` that evaluates to *name* in the space of *self*."""
478-
479- dt , idx = self .space .name_to_dim [name ]
480- return PwAff (
481- isl .PwAff .var_on_domain (self ._obj .space , dt .as_isl (), idx ),
482- self .space .as_expr_space ())
483-
484475 def as_map (self , in_names : Collection [str ]) -> Map :
485476 result = isl .Map .universe (self ._obj .space )
486477 result = result .intersect_range (self ._obj )
You can’t perform that action at this time.
0 commit comments