Skip to content

Commit c0b5b4f

Browse files
committed
Add inner_product to Table 1
Fixes n3554/n3554#61
1 parent e15cdad commit c0b5b4f

File tree

1 file changed

+28
-29
lines changed

1 file changed

+28
-29
lines changed

algorithms.html

Lines changed: 28 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -162,119 +162,118 @@ <h1><code>ExecutionPolicy</code> algorithm overloads</h1>
162162
is <code>true</code>.
163163
</p>
164164

165-
<p>The algorithms listed in table <cxx-ref to="tab.parallel.algorithms"></cxx-ref> shall have <code>ExecutionPolicy</code> overloads.</p>
165+
<p>The algorithms listed in <cxx-ref to="tab.parallel.algorithms"></cxx-ref> shall have <code>ExecutionPolicy</code> overloads.</p>
166166

167167
<table is="cxx-table" id="tab.parallel.algorithms" class="list">
168168
<caption>Table of parallel algorithms</caption>
169169
<tr>
170170
<td><code>adjacent_difference</code></td>
171171
<td><code>for_each</code></td>
172-
<td><code>none_of</code></td>
173-
<td><code>search</code></td>
172+
<td><code>move</code></td>
173+
<td><code>rotate_copy</code></td>
174174
</tr>
175175
<tr>
176176
<td><code>adjacent_find</code></td>
177177
<td><code>for_each_n</code></td>
178-
<td><code>nth_element</code></td>
179-
<td><code>search_n</code></td>
178+
<td><code>none_of</code></td>
179+
<td><code>search</code></td>
180180
</tr>
181181
<tr>
182182
<td><code>all_of</code></td>
183183
<td><code>generate</code></td>
184-
<td><code>partial_sort</code></td>
185-
<td><code>set_difference</code></td>
184+
<td><code>nth_element</code></td>
185+
<td><code>search_n</code></td>
186186
</tr>
187187
<tr>
188188
<td><code>any_of</code></td>
189189
<td><code>generate_n</code></td>
190-
<td><code>partial_sort_copy</code></td>
191-
<td><code>set_intersection</code></td>
190+
<td><code>partial_sort</code></td>
191+
<td><code>set_difference</code></td>
192192
</tr>
193193
<tr>
194194
<td><code>copy</code></td>
195195
<td><code>includes</code></td>
196-
<td><code>partition</code></td>
197-
<td><code>set_symmetric_difference</code></td>
196+
<td><code>partial_sort_copy</code></td>
197+
<td><code>set_intersection</code></td>
198198
</tr>
199199
<tr>
200200
<td><code>copy_if</code></td>
201201
<td><code>inclusive_scan</code></td>
202+
<td><code>partition</code></td>
203+
<td><code>set_symmetric_difference</code></td>
204+
</tr>
205+
<tr>
206+
<td><code>copy_n</code></td>
207+
<td><code>inner_product</code></td>
202208
<td><code>partition_copy</code></td>
203209
<td><code>set_union</code></td>
204210
</tr>
205211
<tr>
206-
<td><code>copy_n</code></td>
212+
<td><code>count</code></td>
207213
<td><code>inplace_merge</code></td>
208214
<td><code>reduce</code></td>
209215
<td><code>sort</code></td>
210216
</tr>
211217
<tr>
212-
<td><code>count</code></td>
218+
<td><code>count_if</code></td>
213219
<td><code>is_heap</code></td>
214220
<td><code>remove</code></td>
215221
<td><code>stable_partition</code></td>
216222
</tr>
217223
<tr>
218-
<td><code>count_if</code></td>
224+
<td><code>equal</code></td>
219225
<td><code>is_partitioned</code></td>
220226
<td><code>remove_copy</code></td>
221227
<td><code>stable_sort</code></td>
222228
</tr>
223229
<tr>
224-
<td><code>equal</code></td>
230+
<td><code>exclusive_scan</code></td>
225231
<td><code>is_sorted</code></td>
226232
<td><code>remove_copy_if</code></td>
227233
<td><code>swap_ranges</code></td>
228234
</tr>
229235
<tr>
230-
<td><code>exclusive_scan</code></td>
236+
<td><code>fill</code></td>
231237
<td><code>is_sorted_until</code></td>
232238
<td><code>remove_if</code></td>
233239
<td><code>transform</code></td>
234240
</tr>
235241
<tr>
236-
<td><code>fill</code></td>
242+
<td><code>fill_n</code></td>
237243
<td><code>lexicographical_compare</code></td>
238244
<td><code>replace</code></td>
239245
<td><code>uninitialized_copy</code></td>
240246
</tr>
241247
<tr>
242-
<td><code>fill_n</code></td>
248+
<td><code>find</code></td>
243249
<td><code>max_element</code></td>
244250
<td><code>replace_copy</code></td>
245251
<td><code>uninitialized_copy_n</code></td>
246252
</tr>
247253
<tr>
248-
<td><code>find</code></td>
254+
<td><code>find_end</code></td>
249255
<td><code>merge</code></td>
250256
<td><code>replace_copy_if</code></td>
251257
<td><code>uninitialized_fill</code></td>
252258
</tr>
253259
<tr>
254-
<td><code>find_end</code></td>
260+
<td><code>find_first_of</code></td>
255261
<td><code>min_element</code></td>
256262
<td><code>reverse</code></td>
257263
<td><code>uninitialized_fill_n</code></td>
258264
</tr>
259265
<tr>
260-
<td><code>find_first_of</code></td>
266+
<td><code>find_if</code></td>
261267
<td><code>minmax_element</code></td>
262268
<td><code>reverse_copy</code></td>
263269
<td><code>unique</code></td>
264270
</tr>
265271
<tr>
266-
<td><code>find_if</code></td>
272+
<td><code>find_if_not</code></td>
267273
<td><code>mismatch</code></td>
268274
<td><code>rotate</code></td>
269275
<td><code>unique_copy</code></td>
270276
</tr>
271-
<tr>
272-
<td><code>find_if_not</code></td>
273-
<td><code>move</code></td>
274-
<td><code>rotate_copy</code></td>
275-
<td></td>
276-
<td></td>
277-
</tr>
278277
</table>
279278
</cxx-section>
280279
</cxx-section>

0 commit comments

Comments
 (0)