Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit 3040231

Browse files
author
Sven Verdoolaege
committed
ScheduleTreeElemBand::write: use standard isl C++ interface
1 parent a6f1959 commit 3040231

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/core/polyhedral/schedule_print.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -149,12 +149,12 @@ std::ostream& ScheduleTreeElemBand::write(std::ostream& os) const {
149149
os << " unroll(";
150150
std::copy(unroll_.begin(), unroll_.end(), make_ostream_joiner(os, ", "));
151151
os << ")";
152-
for (const auto& upa : isl::MUPA(mupa_)) {
152+
for (const auto& upa : mupa_.get_union_pw_aff_list()) {
153153
os << std::endl
154154
<< w.tab()
155155
<< "-----------------------------------------------------------------------";
156-
for (const auto& pa : upa) {
157-
os << std::endl << w.tab() << "| " << pa.pa;
156+
for (const auto& pa : upa.get_pw_aff_list()) {
157+
os << std::endl << w.tab() << "| " << pa;
158158
}
159159
}
160160
os << std::endl

0 commit comments

Comments
 (0)