tmp/tmpiq0h5esu/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### Sequenced execution policy <a id="execpol.seq">[[execpol.seq]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
class execution::sequenced_policy { unspecified };
|
| 5 |
+
```
|
| 6 |
+
|
| 7 |
+
The class `execution::sequenced_policy` is an execution policy type used
|
| 8 |
+
as a unique type to disambiguate parallel algorithm overloading and
|
| 9 |
+
require that a parallel algorithm’s execution may not be parallelized.
|
| 10 |
+
|
| 11 |
+
During the execution of a parallel algorithm with the
|
| 12 |
+
`execution::sequenced_policy` policy, if the invocation of an element
|
| 13 |
+
access function exits via an uncaught exception, `terminate()` shall be
|
| 14 |
+
called.
|
| 15 |
+
|