aboutsummaryrefslogtreecommitdiff
path: root/include/divsufsort.h.cmake
diff options
context:
space:
mode:
authoryuta.256 <yuta.256@b7c3aa3b-274f-0410-ae0b-edc9d07c929d>2008-07-10 20:35:01 +0000
committeryuta.256 <yuta.256@b7c3aa3b-274f-0410-ae0b-edc9d07c929d>2008-07-10 20:35:01 +0000
commit361469ad541e72994cacb88e4e0f98ea74d23735 (patch)
tree64b9beaf4cd33c3ed21d077ad53c6a80ff8444ec /include/divsufsort.h.cmake
parent0b0d08bc414f9152b0f7afac36b56b4b30e2679f (diff)
downloadlibdivsufsort-361469ad541e72994cacb88e4e0f98ea74d23735.tar.gz
Major rewrite of libdivsufsort.
Added CPack support to create the source package. Added OpenMP support for sssort.
Diffstat (limited to 'include/divsufsort.h.cmake')
-rw-r--r--include/divsufsort.h.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/divsufsort.h.cmake b/include/divsufsort.h.cmake
index 73feefe..45c7b04 100644
--- a/include/divsufsort.h.cmake
+++ b/include/divsufsort.h.cmake
@@ -67,7 +67,7 @@ typedef @SAINDEX_TYPE@ saidx_t;
/**
* Constructs the suffix array of a given string.
* @param T[0..n-1] The input string.
- * @param SA[0..n] The output array of suffixes.
+ * @param SA[0..n-1] The output array of suffixes.
* @param n The length of the given string.
* @return 0 if no error occurred, -1 or -2 otherwise.
*/
@@ -79,7 +79,7 @@ divsufsort(const sauchar_t *T, saidx_t *SA, saidx_t n);
* Constructs the burrows-wheeler transformed string of a given string.
* @param T[0..n-1] The input string.
* @param U[0..n-1] The output string. (can be T)
- * @param A[0..n] The temporary array. (can be NULL)
+ * @param A[0..n-1] The temporary array. (can be NULL)
* @param n The length of the given string.
* @return The primary index if no error occurred, -1 or -2 otherwise.
*/
@@ -113,7 +113,7 @@ inverse_bw_transform(const sauchar_t *T, sauchar_t *U,
/**
* Checks the correctness of a given suffix array.
* @param T[0..n-1] The input string.
- * @param SA[0..n] The input suffix array.
+ * @param SA[0..n-1] The input suffix array.
* @param n The length of the given string.
* @param verbose The verbose mode.
* @return 0 if no error occurred.