Content deleted Content added
DrakeCuffs (talk | contribs) m Adding a wiki link. |
|||
Line 18:
can be blocked with a block size B by replacing it with
<source lang=c>
for(j=0; j<N; j+=B){
for(i=j; i<min(N, j+B); ++i){
....
}
}
</source>
where min() is a function returning the minimum of its arguments.
|