This repository was archived by the owner on Apr 28, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -185,6 +185,13 @@ inline isl::map operator<=(isl::aff_map A, isl::aff B) {
185
185
return A < B + 1 ;
186
186
}
187
187
188
+ // /////////////////////////////////////////////////////////////////////////////
189
+ // Operations on isl::multi_aff
190
+ // /////////////////////////////////////////////////////////////////////////////
191
+ inline isl::multi_aff operator /(isl::multi_aff left, isl::multi_val right) {
192
+ return left.scale_down (right);
193
+ }
194
+
188
195
// /////////////////////////////////////////////////////////////////////////////
189
196
// Operations on isl::set and isl::union_set
190
197
// /////////////////////////////////////////////////////////////////////////////
Original file line number Diff line number Diff line change @@ -176,6 +176,11 @@ isl::map operator<=(isl::aff_map A, isl::aff B);
176
176
isl::map operator >(isl::aff_map A, isl::aff B);
177
177
isl::map operator <(isl::aff_map A, isl::aff B);
178
178
179
+ // /////////////////////////////////////////////////////////////////////////////
180
+ // Operations on isl::multi_aff
181
+ // /////////////////////////////////////////////////////////////////////////////
182
+ isl::multi_aff operator /(isl::multi_aff left, isl::multi_val right);
183
+
179
184
// /////////////////////////////////////////////////////////////////////////////
180
185
// Operations on isl::set and isl::union_set
181
186
// /////////////////////////////////////////////////////////////////////////////
You can’t perform that action at this time.
0 commit comments