diff options
Diffstat (limited to 'libstdc++-v3/docs/html/ext/parallel_mode.html')
-rw-r--r-- | libstdc++-v3/docs/html/ext/parallel_mode.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libstdc++-v3/docs/html/ext/parallel_mode.html b/libstdc++-v3/docs/html/ext/parallel_mode.html index 2e4f6624f8d..7ca8dbe937c 100644 --- a/libstdc++-v3/docs/html/ext/parallel_mode.html +++ b/libstdc++-v3/docs/html/ext/parallel_mode.html @@ -425,7 +425,7 @@ For each algorithm, a minimum problem size can be stated, usually using the variable <code>__gnu_parallel::Settings::[algorithm]_minimal_n</code>. Please see <a href="latest-doxygen/settings_8h.html"> -<code><settings.h></code><a> for details.</p> +<code><settings.h></code></a> for details.</p> @@ -434,7 +434,7 @@ Please see <a href="latest-doxygen/settings_8h.html"> <p>All parallel algorithms are intended to have signatures that are equivalent to the ISO C++ algorithms replaced. For instance, the <code>std::adjacent_find</code> function is declared as: - +</p> <pre> namespace std { @@ -444,8 +444,10 @@ namespace std } </pre> +<p> Which means that there should be something equivalent for the parallel version. Indeed, this is the case: +</p> <pre> namespace std @@ -495,7 +497,7 @@ of threads available, etc., and are denoted by the use of the enum <p> Putting all this together, the general view of overloads for the parallel algorithms look like this: -<p> +</p> <ul> <li>ISO C++ signature</li> <li>ISO C++ signature + sequential_tag argument</li> |