Skip to content

Commit

Permalink
Fix link
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwalisch committed Sep 17, 2023
1 parent de40d1b commit 48be90c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions doc/CPP_API.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ parameters and return values.
* [Error handling](#error-handling)
* [Performance tips](#performance-tips)
* [Multi-threading](#Multi-threading)
* [SIMD (vectorization)](#SIMD-(vectorization))
* [SIMD (vectorization)](#SIMD-vectorization)
* [Compiling and linking](#compiling-and-linking)
* [pkgconf support](#pkgconf-support)
* [CMake support](#cmake-support)
Expand Down Expand Up @@ -353,7 +353,7 @@ parallelize an algorithm using multiple ```primesieve::iterator``` objects.
* The ```primesieve::iterator``` data structure allows you to access the underlying
64-bit ```primes``` array, together with the ```generate_next_primes()``` method,
this can be used for all kinds of low-level optimizations. E.g. the
[SIMD (vectorization)](#SIMD-(vectorization)) section contains an example that shows how
[SIMD (vectorization)](#SIMD-vectorization) section contains an example that shows how
to process primes using SIMD instructions.

* The ```primesieve::iterator``` constructor and the
Expand Down
4 changes: 2 additions & 2 deletions doc/C_API.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ parameters and return values.
* [Error handling](#error-handling)
* [Performance tips](#performance-tips)
* [Multi-threading](#Multi-threading)
* [SIMD (vectorization)](#SIMD-(vectorization))
* [SIMD (vectorization)](#SIMD-vectorization)
* [Compiling and linking](#compiling-and-linking)
* [pkgconf support](#pkgconf-support)
* [CMake support](#cmake-support)
Expand Down Expand Up @@ -414,7 +414,7 @@ parallelize an algorithm using multiple ```primesieve_iterator``` objects.
* The ```primesieve_iterator``` data structure allows you to access the underlying
64-bit ```primes``` array, together with the ```primesieve_generate_next_primes()```
function, this can be used for all kinds of low-level optimizations. E.g. the
[SIMD (vectorization)](#SIMD-(vectorization)) section contains an example that shows how
[SIMD (vectorization)](#SIMD-vectorization) section contains an example that shows how
to process primes using SIMD instructions.

* The ```primesieve_jump_to()``` function takes an optional ```stop_hint```
Expand Down
2 changes: 1 addition & 1 deletion doc/mainpage.dox
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@
///
/// @li <a href="https://github.com/kimwalisch/primesieve/blob/master/doc/C_API.md#performance-tips"><b>libprimesieve performance tips</b></a>
/// @li <a href="https://github.com/kimwalisch/primesieve/blob/master/doc/C_API.md#Multi-threading"><b>Multi-threading</b></a>
/// @li <a href="https://github.com/kimwalisch/primesieve/blob/master/doc/C_API.md#SIMD-(vectorization)"><b>SIMD (vectorization)</b></a>
/// @li <a href="https://github.com/kimwalisch/primesieve/blob/master/doc/C_API.md#SIMD-vectorization"><b>SIMD (vectorization)</b></a>
///

0 comments on commit 48be90c

Please sign in to comment.