@@ -20,9 +20,14 @@ a given number of elements, the **_for-loop_** is what we want to use. The for-l
20
20
syntax:
21
21
22
22
``` chpl
23
+ // single-statement version
23
24
for index in iterand do
25
+ instruction;
26
+
27
+ // multi-statement version
28
+ for index in iterand
24
29
{instructions}
25
- ```
30
+ ```
26
31
27
32
The * iterand* is a function or statement that expresses an iteration; it could be the range 1..15, for
28
33
example. * index* is a variable that exists only in the context of the for-loop, and that will be taking the
@@ -35,7 +40,7 @@ This `for` loop, for example
35
40
36
41
``` chpl
37
42
// calculate the new temperatures (temp_new) using the past temperatures (temp)
38
- for i in 1..rows do
43
+ for i in 1..rows
39
44
{
40
45
// do this for every row
41
46
}
@@ -47,10 +52,10 @@ this:
47
52
48
53
``` chpl
49
54
// calculate the new temperatures (temp_new) using the past temperatures (temp)
50
- for i in 1..rows do
55
+ for i in 1..rows
51
56
{
52
57
// do this for every row
53
- for j in 1..cols do
58
+ for j in 1..cols
54
59
{
55
60
// and this for every column in the row i
56
61
}
@@ -62,10 +67,10 @@ follows:
62
67
63
68
``` chpl
64
69
// calculate the new temperatures (temp_new) using the past temperatures (temp)
65
- for i in 1..rows do
70
+ for i in 1..rows
66
71
{
67
72
// do this for every row
68
- for j in 1..cols do
73
+ for j in 1..cols
69
74
{
70
75
// and this for every column in the row i
71
76
temp_new[i,j] = (temp[i-1,j] + temp[i+1,j] + temp[i,j-1] + temp[i,j+1]) / 4;
@@ -78,6 +83,17 @@ Note that at the end of the outer `for` loop, when all the elements in `temp_new
78
83
` temp ` with the values of ` temp_new ` ; this way everything is set up for the next iteration of the main ` while `
79
84
statement.
80
85
86
+ We're ready to execute our code, but the conditions we have initially set up
87
+ will not produce interesting output, because the plate has a temperature
88
+ value of ` 25 ` everywhere. We can change the boundaries to have temperature ` 0 `
89
+ so that the middle will start cooling down. To do this, we should change the
90
+ declaration of ` temp ` to:
91
+
92
+ ``` chpl
93
+ var temp: [0..rows+1, 0..cols+1] real = 0; // the whole plate starts at 0
94
+ temp[1..rows,1..cols] = 25; // set the non-boundary coordinates to 25
95
+ ```
96
+
81
97
Now let's compile and execute our code again:
82
98
83
99
``` bash
@@ -239,9 +255,9 @@ the job:
239
255
``` chpl
240
256
// update delta, the greatest difference between temp_new and temp
241
257
delta=0;
242
- for i in 1..rows do
258
+ for i in 1..rows
243
259
{
244
- for j in 1..cols do
260
+ for j in 1..cols
245
261
{
246
262
tmp = abs(temp_new[i,j]-temp[i,j]);
247
263
if tmp > delta then delta = tmp;
@@ -337,8 +353,8 @@ The greatest difference in temperatures between the last two iterations was: 0.0
337
353
338
354
::::::::::::::::::::::::::::::::::::: keypoints
339
355
- "You can organize loops with ` for ` and ` while ` statements. Use a ` for ` loop to run over every element of the
340
- iterand, e.g. ` for i in 1..rows do { ...} ` will run over all integers from 1 to ` rows ` . Use a ` while `
356
+ iterand, e.g. ` for i in 1..rows { ...} ` will run over all integers from 1 to ` rows ` . Use a ` while `
341
357
statement to repeatedly execute a code block until the condition does not hold anymore, e.g. `while (c <
342
- niter && delta >= tolerance) do {...}` will repeatedly execute the commands in curly braces until one of the
358
+ niter && delta >= tolerance) {...}` will repeatedly execute the commands in curly braces until one of the
343
359
two conditions turns false."
344
360
::::::::::::::::::::::::::::::::::::::::::::::::
0 commit comments