Skip to content

Commit eb33135

Browse files
committed
update exo expose
1 parent 271ecb4 commit eb33135

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

expose/solution/main.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ int main(int argc, char *argv[]) {
213213

214214
// the main loop
215215
for (; ii < 10; ++ii) {
216+
PDI_expose("iteration", &ii, PDI_OUT);
216217
PDI_expose("temp", cur, PDI_OUT);
217218
// compute the values for the next iteration
218219
iter(cur, next);
@@ -225,6 +226,7 @@ int main(int argc, char *argv[]) {
225226
cur = next;
226227
next = tmp;
227228
}
229+
PDI_expose("iteration", &ii, PDI_OUT);
228230
PDI_expose("temp", cur, PDI_OUT);
229231

230232
// destroy the paraconf configuration tree

0 commit comments

Comments
 (0)