We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 271ecb4 commit eb33135Copy full SHA for eb33135
expose/solution/main.c
@@ -213,6 +213,7 @@ int main(int argc, char *argv[]) {
213
214
// the main loop
215
for (; ii < 10; ++ii) {
216
+ PDI_expose("iteration", &ii, PDI_OUT);
217
PDI_expose("temp", cur, PDI_OUT);
218
// compute the values for the next iteration
219
iter(cur, next);
@@ -225,6 +226,7 @@ int main(int argc, char *argv[]) {
225
226
cur = next;
227
next = tmp;
228
}
229
230
231
232
// destroy the paraconf configuration tree
0 commit comments