aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYuta Mori <yuta.256@gmail.com>2015-03-21 00:16:01 +0900
committerYuta Mori <yuta.256@gmail.com>2015-03-21 00:16:01 +0900
commitbd66436735e5d888f9809acfe0f485370956078d (patch)
tree065eb14af18358b7d19b8b730618b79e9bdd3338
parent73709213017a3b9b102ea52e74ca0077a3d8e2f8 (diff)
downloadplatform_external_libdivsufsort-bd66436735e5d888f9809acfe0f485370956078d.tar.gz
platform_external_libdivsufsort-bd66436735e5d888f9809acfe0f485370956078d.tar.bz2
platform_external_libdivsufsort-bd66436735e5d888f9809acfe0f485370956078d.zip
Remove unneeded files
-rw-r--r--AUTHORS3
-rw-r--r--ChangeLog175
-rw-r--r--ChangeLog.old67
-rw-r--r--INSTALL31
-rw-r--r--NEWS43
-rw-r--r--README250
6 files changed, 0 insertions, 569 deletions
diff --git a/AUTHORS b/AUTHORS
deleted file mode 100644
index 1154fe9..0000000
--- a/AUTHORS
+++ /dev/null
@@ -1,3 +0,0 @@
--- AUTHORS for libdivsufsort
-
-Yuta Mori <yuta.256@gmail.com>
diff --git a/ChangeLog b/ChangeLog
deleted file mode 100644
index 1b89304..0000000
--- a/ChangeLog
+++ /dev/null
@@ -1,175 +0,0 @@
-2008-02-23 Yuta Mori <yiv01157@nifty.com>
-
- * lib/substringsort.c (_merge_backward): Bug fix.
- * lib/trsort.c (_tr_introsort): Bug fix.
-
-2007-09-02 Yuta Mori <yiv01157@nifty.com>
-
- * lib/trsort.c (_ls_introsort): Important bug fix.
-
-2007-07-15 Yuta Mori <yiv01157@nifty.com>
-
- A few bug fixes.
-
- * lib/divsufsort.c (divbwt): Bug fix.
- * lib/trsort.c (_tr_introsort): Bug fix.
- * lib/utils.c (sa_search, sa_simplesearch): New functions.
- * lib/libdivsufsort.sym: Update.
- * include/divsufsort.h.in: Update.
- * examples/sasearch.c: New file.
- * examples/Makefile.am: Update.
- * configure.ac: Update.
- * NEWS: Update.
- * README: Update.
-
-2007-04-14 Yuta Mori <yiv01157@nifty.com>
-
- Change license to the MIT/X11 license.
- Update all files for 1.2.0.
-
- * lib/libdivsufsort.sym: New file for libtool.
-
-2007-04-07 Yuta Mori <yiv01157@nifty.com>
-
- Update files for 1.1.7.
-
-2007-04-07 Yuta Mori <yiv01157@nifty.com>
-
- Replace drsort with tandem repeat sorting algorithm and Larsson-Sadakane sorting algorithm.
-
- * lib/trsort.c: New file.
- * lib/drsort.c: Delete.
- * lib/divsufsort.c: Update.
- * lib/Makefile.am: Update.
- * lib/divsufsort_private.h.in (LS_INSERTIONSORT_THRESHOLD, TR_INSERTIONSORT_THRESHOLD): New constants.
- (DR_INSERTIONSORT_THRESHOLD): Delete.
- (STACK_PUSH3, STACK_POP3): New macros.
-
-2007-03-31 Yuta Mori <yiv01157@nifty.com>
-
- Update files for 1.1.6.
-
-2007-03-31 Yuta Mori <yiv01157@nifty.com>
-
- Replace _ss_merge with new merge algorithms.
-
- * lib/substringsort.c (_ss_merge): Delete.
- * lib/substringsort.c (_block_swap, _merge_forward, _merge_backward, _merge): New functions.
- (substringsort): Update.
- * lib/divsufsort.c (_sort_typeBstar, divsufsort, divbwt): Update.
- * include/divsufsort_private.h.in (LOCALMERGE_BUFFERSIZE): New constant.
- (SS_MERGESORT_QUEUESIZE): Delete.
-
-2007-03-24 Yuta Mori <yiv01157@nifty.com>
-
- Update files for 1.1.5.
-
-2007-03-23 Yuta Mori <yiv01157@nifty.com>
-
- Replace breadth-first introsort with new multikey introsort.
-
- * lib/substringsort.c (_compare): Update.
- (_substring_partition): Update.
- (_multikey_introsort): New function.
- (_introsort, _bfintrosort): Delete.
- (substringsort): Update.
- * lib/divsufsort.c (_sort_typeBstar): Update.
-
-2007-03-21 Yuta Mori <yiv01157@nifty.com>
-
- * lib/substringsort.c (_introsort): Convert introsort to a non-recursive algorithm.
- (substringsort): Update.
- * lib/divsufsort.c (_sort_typeBstar): Update.
-
-2007-03-21 Yuta Mori <yiv01157@nifty.com>
-
- * include/divsufsort_private.h.in (STACK_SIZE): Rename from SS_STACK_SIZE.
- (SS_BLOCKSIZE): Rename from SS_MKQSORT_THRESHOLD.
- (SS_MKQSORT_DMAX, SS_DSWAP, SS_STACK_PUSH, SS_STACK_POP): Delete.
- (STACK_PUSH, STACK_POP): New macros.
- (substringsort): Update prototype.
-
-2007-03-17 Yuta Mori <yiv01157@nifty.com>
-
- Update files for 1.1.4.
-
-2007-03-17 Yuta Mori <yiv01157@nifty.com>
-
- * substringsort.c (_fixdown, _heapsort, _lg): New function.
- (_introsort): Rename from _quicksort. Change to use new partitioning algorithm.
- (_bfintrosort): Rename from _bfquicksort.
-
-2007-03-10 Yuta Mori <yiv01157@nifty.com>
-
- Update files for 1.1.3.
-
-2007-03-10 Yuta Mori <yiv01157@nifty.com>
-
- Replace depth-first multikey quicksort with new breadth-first ternary quicksort.
-
- * substringsort.c (_ss_compare_lcp, _ss_tqsort, _ss_mkqsort): Remove.
- (_median3): Rename from _ss_median and rewrite.
- (_pivot): Rename from _ss_pivot and rewrite.
- (_median5, _substring_partition, _quicksort, _bfquicksort): New function.
-
-2007-03-03 Yuta Mori <yiv01157@nifty.com>
-
- Update files for 1.1.2.
-
-2007-03-03 Yuta Mori <yiv01157@nifty.com>
-
- * substringsort.c (_compare): Rename from _ss_compare and rewrite.
- (_insertionsort): Rename from _ss_insertionsort and rewrite.
-
-2007-02-24 Yuta Mori <yiv01157@nifty.com>
-
- Update files for 1.1.1.
-
-2007-02-24 Yuta Mori <yiv01157@nifty.com>
-
- * lib/substringsort.c (_ss_getc): Remove.
-
-2007-02-17 Yuta Mori <yiv01157@nifty.com>
-
- Update files for 1.1.0.
-
-2007-02-17 Yuta Mori <yiv01157@nifty.com>
-
- * utils.c (bwtcheck): Remove.
-
-2007-02-11 Yuta Mori <yiv01157@nifty.com>
-
- * lib/divsufsort.c,
- include/divsufsort.h.in,
- include/divsufsort_private.h.in:
- Change to use a new improved two-stage sort algorithm (version 070210).
-
-2007-01-28 Yuta Mori <yiv01157@nifty.com>
-
- * lib/divsufsort.c (_sort): Fix a bug that using wrong index.
-
-2007-01-28 Yuta Mori <yiv01157@nifty.com>
-
- * examples/bwt.c: Rename from examples/bwt2.c.
- * examples/unbwt.c: Rename from examples/unbwt2.c.
- * examples/bwt1.c: Delete.
- * examples/unbwt1.c: Delete.
-
-2007-01-28 Yuta Mori <yiv01157@nifty.com>
-
- * lib/divsufsort.c, include/divsufsort_private.h.in:
- Change to use new improved two-stage sort algorithm (version 070128).
-
-2007-01-24 Yuta Mori <yiv01157@nifty.com>
-
- Remove use of libtool.
-
- * include/divsufsort_private.h.in: Rename from include/divsufsort_private.h.
-
-2007-01-24 Yuta Mori <yiv01157@nifty.com>
-
- Initial import.
-
-;; Local Variables:
-;; coding: utf-8
-;; End:
diff --git a/ChangeLog.old b/ChangeLog.old
deleted file mode 100644
index df8de8e..0000000
--- a/ChangeLog.old
+++ /dev/null
@@ -1,67 +0,0 @@
-Version 1.0.2 (2006-01-01):
-
- * Release 1.0.2
-
-Version 1.0.2b (2005-12-11):
-
- * lib/divsufsort.c (_construct_typeBstar): Completely rewrite.
-
-Version 1.0.2a (2005-12-04):
-
- * lib/substringsort.c: Completely rewrite.
- * lib/drsort.c: Completely rewrite.
- * lib/divsufsort.c (_sort_typeBstar): Fix some bugs.
-
-Version 1.0.1 (2005-11-08):
-
- * Release 1.0.1
-
-Version 1.0.1a (2005-11-06):
-
- * configure.ac: Add AM_ENABLE_STATIC, AM_DISABLE_SHARED and AC_LIBTOOL_WIN32_DLL
-
- * Makefile.am (EXTRA_DIST): Add ChangeLog.old.
-
- * lib/divsufsort.c (_construct_typeBstar): Fix.
-
- * AUTHORS: New file.
- * ChangeLog: New file.
- * ChangeLog.old: New file.
- * INSTALL: New file.
- * NEWS: New file.
-
-Version 1.0.0 (2005-10-31)
- * Introduced autoconf and automake.
- * Added new example programs.
-
-Version 0.2.1 (2005-08-27)
- * divsufsort.c: Kao's algorithm was replaced with Improved Two-Stage algorithm.
- * divsufsort.c: Reduced memory usage.
- * substringsort.c: Added mergesort for sorting large groups of suffixes.
-
-Version 0.1.6 (2005-06-10)
- * divsufsort.h: Renamed from libdivsufsort.h. (again...)
- * divsufsort.c: Renamed from libdivsufsort.c. (again...)
- * divsufsort.c: Reduced memory usage.
- * substringsort.c, substringsort.h, drsort.c, drsort.h: Modify.
- * mksary_mmap/makefile, mksary_mmap/mksary.c,
- mksary_mmap/mmap.c, mksary_mmap/mmap.h: Removed.
-
-Version 0.1.5 (2005-04-07)
- * libdivsufsort.c: ranksort and doublingsort were replaced with drsort.
- * def.h, drsort.c, drsort.h: New file.
- * doublingsort.c, doublingsort.h, ranksort.c, ranksort.h: Removed.
-
-Version 0.1.4 (2005-03-27)
- * mksary/mksary.c, mksary_mmap/mksary.c, suftest.c: Added error handling.
-
-Version 0.1.3 (2005-01-28)
- * mksary/makefile, mksary/mksary.c, mksary_mmap/makefile,
- mksary_mmap/mksary.c, mksary_mmap/mmap.c, mksary_mmap/mmap.h: New file.
- * libdivsufsort.c: Modify.
-
-Version 0.1.2 (2005-01-01)
- * suftest.c: New file.
- * libdivsufsort.c: Renamed from divsufsort.c.
- * libdivsufsort.h: Renamed from divsufsort.h.
-
diff --git a/INSTALL b/INSTALL
deleted file mode 100644
index ba7ee09..0000000
--- a/INSTALL
+++ /dev/null
@@ -1,31 +0,0 @@
--- INSTALL for libdivsufsort
-
-
-Requirements:
-=============
-
- * CMake version 2.4.2 or newer (http://www.cmake.org/)
- * An ANSI C compiler
- * GNU Make
-
-
-Compilation and Installation (with Unix Makefiles):
-===================================================
-
- 1. Create a 'build' directory in the package source directory.
-
- $ cd libdivsufsort-?.?.?
- $ mkdir build
- $ cd build
-
- 2. Configure the package for your system.
-
- $ cmake -DCMAKE_BUILD_TYPE="Release" -DCMAKE_INSTALL_PREFIX="/usr/local" ..
-
- 3. Compile the package.
-
- $ make
-
- 4. Install the library and header files.
-
- # make install
diff --git a/NEWS b/NEWS
deleted file mode 100644
index f240fd1..0000000
--- a/NEWS
+++ /dev/null
@@ -1,43 +0,0 @@
--- NEWS for libdivsufsort
-
-Changes in release 2.0.0
-
- - The build system was changed to CMake. (http://www.cmake.org/)
- - Improved the performance of the suffix-sorting algorithm.
- - Added OpenMP support.
- - Added 64-bit version of divsufsort.
-
-Changes in release 1.2.3
-
- - Bug fixes.
-
-Changes in release 1.2.2
-
- - An important bug fix.
-
-Changes in release 1.2.1
-
- - A few bug fixes.
- - New APIs: sa_search, sa_simplesearch.
-
-Changes in release 1.2.0
-
- - Changed license to the MIT/X11 license, see COPYING.
- - Improved the performance of the suffix array construction.
- - Change to use a new improved two-stage sorting algorithm.
- - Replace substringsort with a new sorting algorithm that uses
- multikey introspective sorting algorithm and in-place/recursive
- merging algorithm.
- - Replace drsort with a new sorting algorithm that uses
- multikey introspective sorting algorithm, Maniscalco's tandem
- repeat sorting algorithm and Larsson-Sadakane sorting algorithm.
- - New API: divbwt.
-
-Changes in release 1.0.2
-
- - The performance of sorting has been improved.
- - Fix some bugs.
-
-Changes in release 1.0.1
-
- - The performance of sorting has been improved a little bit.
diff --git a/README b/README
deleted file mode 100644
index 8bb4ef0..0000000
--- a/README
+++ /dev/null
@@ -1,250 +0,0 @@
-libdivsufsort - A lightweight suffix-sorting library.
------------------------------------------------------
-
-Introduction:
--------------
-
-The libdivsufsort project provides a fast, lightweight, and robust
-C API library to construct the suffix array and the Burrows-Wheeler
-transformed string for any input string of a constant-size alphabet.
-
-The suffix-sorting algorithm runs in O(n log n) worst-case time
-using only 5n+O(1) bytes of memory space, where n is the length of
-the input string.
-
-The latest version of libdivsufsort is available at:
- http://libdivsufsort.googlecode.com/
-
-
-License:
---------
-
-libdivsufsort is released under the MIT/X11 license. See the file
-COPYING for more details.
-
-
-APIs:
------
-
- * Data types
- typedef int32_t saint_t;
- typedef int32_t saidx_t;
- typedef uint8_t sauchar_t;
-
- * Constructs the suffix array of a given string.
- * @param T[0..n-1] The input string.
- * @param SA[0..n-1] The output array or suffixes.
- * @param n The length of the given string.
- * @return 0 if no error occurred, -1 or -2 otherwise.
- saint_t
- 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-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.
- saidx_t
- divbwt(const sauchar_t *T, sauchar_t *U, saidx_t *A, saidx_t n);
-
- * Constructs the burrows-wheeler transformed string of a given string and suffix array.
- * @param T[0..n-1] The input string.
- * @param U[0..n-1] The output string. (can be T)
- * @param SA[0..n-1] The suffix array. (can be NULL)
- * @param n The length of the given string.
- * @param idx The output primary index.
- * @return 0 if no error occurred, -1 or -2 otherwise.
- saint_t
- bw_transform(const sauchar_t *T, sauchar_t *U, saidx_t *SA,
- saidx_t n, saidx_t *idx);
-
- * Inverse BW-transforms a given BWTed string.
- * @param T[0..n-1] The input string.
- * @param U[0..n-1] The output string. (can be T)
- * @param A[0..n-1] The temporary array. (can be NULL)
- * @param n The length of the given string.
- * @param idx The primary index.
- * @return 0 if no error occurred, -1 or -2 otherwise.
- saint_t
- inverse_bw_transform(const sauchar_t *T, sauchar_t *U,
- saidx_t *A, saidx_t n, saidx_t idx);
-
- * Checks the correctness of a given suffix array.
- * @param T[0..n-1] The input string.
- * @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.
- saint_t
- sufcheck(const sauchar_t *T, const saidx_t *SA,
- saidx_t n, saint_t verbose);
-
- * Search for the pattern P in the string T.
- * @param T[0..Tsize-1] The input string.
- * @param Tsize The length of the given string.
- * @param P[0..Psize-1] The input pattern string.
- * @param Psize The length of the given pattern string.
- * @param SA[0..SAsize-1] The input suffix array.
- * @param SAsize The length of the given suffix array.
- * @param idx The output index.
- * @return The count of matches if no error occurred, -1 otherwise.
- saidx_t
- sa_search(const sauchar_t *T, saidx_t Tsize,
- const sauchar_t *P, saidx_t Psize,
- const saidx_t *SA, saidx_t SAsize,
- saidx_t *idx);
-
- * Search for the character c in the string T.
- * @param T[0..Tsize-1] The input string.
- * @param Tsize The length of the given string.
- * @param SA[0..SAsize-1] The input suffix array.
- * @param SAsize The length of the given suffix array.
- * @param c The input character.
- * @param idx The output index.
- * @return The count of matches if no error occurred, -1 otherwise.
- saidx_t
- sa_simplesearch(const sauchar_t *T, saidx_t Tsize,
- const saidx_t *SA, saidx_t SAsize,
- saint_t c, saidx_t *idx);
-
- * Returns the version string of libdivsufsort.
- * @return the version string.
- const char *
- divsufsort_version(void);
-
-
-Benchmark:
-------------------
-
-= Specifications =
-Processor: 2.66 GHz Intel Core 2 Duo E6750
-L1 Cache: (32 Kb + 32 Kb) x 2
-L2 Cache: 4 Mb
-RAM: 2 Gb main memory
-Operating system: Windows XP Home SP 3 (with Cygwin)
-Compiler: GCC version 4.3.1
-
-= Programs =
-Archon4r0 kvark's sorting algorithm http://forum.compression.ru/viewtopic.php?t=352
-BPR Bucket-Pointer Refinement algorithm http://bibiserv.techfak.uni-bielefeld.de/bpr/
-DC Difference-Cover algorithm (v = 32) http://www.cs.helsinki.fi/juha.karkkainen/publications/cpm03.tar.gz
-DS Deep-Shallow sorting algorithm http://www.mfn.unipmn.it/~manzini/lightweight/
-divsufsort1 libdivsufsort version 1.2.3 http://libdivsufsort.googlecode.com/
-divsufsort2 libdivsufsort version 2.0.0 http://libdivsufsort.googlecode.com/
-KA Ko-Aluru algorithm http://ko.pang.cn.googlepages.com/software2
-KS Kärkkäinen-Sanders algorithm http://www.mpi-inf.mpg.de/~sanders/programs/suffix/
-MSufSort3 MSufSort version 3.1.1 beta http://www.michael-maniscalco.com/msufsort.htm
-qsufsort Larsson-Sadakane algorithm http://www.larsson.dogma.net/research.html
-sais Induced Sorting algorithm http://yuta.256.googlepages.com/sais
-
-All programs were compiled with gcc/g++ using '-O3 -fomit-frame-pointer -DNDEBUG'
-optimization options. The times are the average of five runs, in seconds, and were
-measured using the standard Unix/Cygwin 'time' command. (user + system) The spaces
-were measured using the 'memusage' command.
-
-= Testfiles =
-Manzini's Large Corpus http://www.mfn.unipmn.it/~manzini/lightweight/corpus/
-The Gauntlet http://www.michael-maniscalco.com/testset/gauntlet/
-
-= Running times =
-
-== Manzini's Corpus ==
-Files Size Archon4r0 BPR DC DS divsufsort1 divsufsort2 KA KS MSufSort3 qsufsort sais
-chr22.dna 34553758 6.030 6.196 22.694 7.514 5.404 5.362 16.980 50.006 7.132 10.642 10.796
-etext99 105277340 22.160 32.582 79.872 34.264 18.758 18.064 73.236 202.684 24.106 56.612 38.748
-gcc-3.0.tar 86630400 13.856 20.692 61.690 35.822 10.382 10.084 40.908 135.174 14.952 40.766 20.990
-howto 39422105 5.806 8.326 25.432 8.288 5.472 5.320 20.694 64.834 5.672 16.366 11.388
-jdk13c 69728899 18.106 22.252 61.234 32.182 9.260 9.010 34.172 101.096 11.314 39.792 16.396
-linux-2.4.5.tar 116254720 18.174 26.226 82.830 25.912 14.672 14.290 58.586 194.412 19.890 54.054 29.614
-rctail96 114711151 32.490 55.826 119.026 62.502 18.500 17.914 70.072 190.562 21.060 70.456 33.248
-rfc 116421901 20.736 35.404 91.284 29.666 16.116 15.658 64.390 196.500 17.936 61.436 32.224
-sprot34.dat 109617186 22.832 36.720 93.122 32.096 17.894 17.404 68.084 187.594 23.352 56.946 34.092
-w3c2 104201579 27.264 29.384 89.352 54.682 13.866 13.486 52.660 162.582 17.090 77.804 25.498
-totals 896819039 187.454 273.608 726.536 322.928 130.324 126.592 499.782 1485.444 162.504 484.874 252.994
-
-== The Gauntlet ==
-Files Size Archon4r0 BPR DC DS divsufsort1 divsufsort2 KA KS MSufSort3 qsufsort sais
-abac 200000 0.044 0.064 0.104 27.914 0.042 0.036 0.058 0.048 0.050 0.062 0.044
-abba 10500600 3.270 5.124 10.766 30.702 1.714 1.602 2.570 7.952 3.514 15.272 1.460
-book1x20 15375420 4.392 3.530 13.872 97.468 2.312 2.154 7.442 15.756 3.542 22.376 3.912
-fib_s14930352 14930352 12.728 10.830 18.524 179.040 3.638 3.588 3.544 10.232 6.700 18.224 2.542
-fss10 12078908 11.390 8.974 15.130 85.328 2.828 2.824 3.344 8.646 4.618 14.754 2.076
-fss9 2851443 1.002 1.210 1.644 5.256 0.410 0.416 0.618 1.290 0.554 2.836 0.336
-houston 3840000 0.344 0.708 2.226 118.960 0.118 0.128 0.520 0.744 0.242 1.230 0.238
-paper5x80 981924 0.110 0.154 0.454 0.806 0.092 0.090 0.210 0.256 0.144 0.448 0.110
-test1 2097152 0.332 2.132 1.108 8.680 0.268 0.280 0.376 1.066 1.302 2.762 0.202
-test2 2097152 0.710 0.616 1.110 8.682 0.180 0.176 0.374 1.076 3.354 2.768 0.206
-test3 2097152 0.488 213.154 1.164 1.772 0.220 0.226 0.388 1.082 0.922 3.246 0.212
-totals 67050103 34.810 246.496 66.102 564.608 11.822 11.520 19.444 48.148 24.942 83.978 11.338
-
-= Space (in MiBytes) =
-
-== Manzini's Corpus ==
-Files Size Archon4r0 BPR DC DS divsufsort1 divsufsort2 KA KS MSufSort3 qsufsort sais
-chr22.dna 34553758 174.66 296.88 193.60 165.18 165.02 165.02 289.97 428.39 199.72 263.62 164.77
-etext99 105277340 531.13 915.48 589.85 503.23 502.25 502.25 907.34 1305.20 604.45 803.20 502.00
-gcc-3.0.tar 86630400 437.14 756.43 485.38 415.87 413.34 413.34 709.50 1074.01 497.79 660.94 413.09
-howto 39422105 199.20 367.53 220.88 188.45 188.23 188.23 331.54 488.75 227.67 300.77 187.98
-jdk13c 69728899 351.96 603.99 390.68 333.40 332.74 332.74 609.71 864.48 401.04 531.99 332.49
-linux-2.4.5.tar 116254720 586.46 1061.83 651.36 555.76 554.60 554.60 977.81 1441.30 667.39 886.95 554.35
-rctail96 114711151 578.68 987.64 642.71 548.32 547.24 547.24 1004.98 1422.16 658.43 875.18 546.99
-rfc 116421901 587.30 1005.85 652.29 556.53 555.39 555.39 956.52 1443.37 668.26 888.23 555.14
-sprot34.dat 109617186 553.01 941.95 614.17 524.03 522.95 522.95 930.06 1359.01 629.26 836.31 522.70
-w3c2 104201579 525.71 958.37 583.82 498.09 497.12 497.12 912.00 1291.87 598.82 795.00 496.87
-totals 896819039 4525.25 7895.95 5024.74 4288.86 4278.88 4278.88 7629.43 11118.54 5152.83 6842.19 4276.38
-mean - 5.29 9.23 5.88 5.01 5.00 5.00 8.92 13.00 6.02 8.00 5.00
-
-== The Gauntlet ==
-Files Size Archon4r0 BPR DC DS divsufsort1 divsufsort2 KA KS MSufSort3 qsufsort sais
-abac 200000 1.51 1.73 1.12 0.98 1.21 1.20 1.75 2.48 3.15 1.53 0.95
-abba 10500600 53.43 90.19 58.83 50.21 50.32 50.32 86.20 130.18 62.09 80.11 50.07
-book1x20 15375420 78.00 134.00 86.15 73.52 73.57 73.57 132.42 190.62 89.99 117.31 73.32
-fib_s14930352 14930352 75.75 128.15 83.65 71.71 71.44 71.44 117.16 185.10 87.43 113.91 71.19
-fss10 12078908 61.38 103.68 67.68 58.05 57.85 57.85 107.05 149.75 71.12 92.16 57.60
-fss9 2851443 14.87 24.48 15.98 13.71 13.85 13.85 25.27 35.35 18.32 21.76 13.60
-houston 3840000 19.85 36.96 21.52 18.46 18.56 18.56 28.79 47.58 23.98 29.30 18.31
-paper5x80 981924 5.45 11.40 5.50 4.72 4.93 4.93 8.59 12.17 7.63 7.49 4.68
-test1 2097152 11.07 82.00 11.75 10.10 10.25 10.25 18.34 25.99 14.01 16.00 10.00
-test2 2097152 11.07 82.00 11.75 10.10 10.25 10.25 18.34 25.99 14.01 16.00 10.00
-test3 2097152 11.07 82.00 11.75 10.05 10.25 10.25 18.34 26.00 14.63 16.00 10.12
-totals 67050103 343.45 776.59 375.68 321.61 322.48 322.47 562.25 831.21 406.36 511.57 319.84
-mean - 5.37 12.14 5.88 5.03 5.04 5.04 8.79 13.00 6.35 8.00 5.00
-
-
-Algorithm:
-----------
-
-libdivsufsort uses the following algorithms for suffix sorting.
- - The improved version of Itho-Tanaka two-stage sorting algorithm. [2][6]
- - A substring sorting/encoding technique. [1][3]
- - Maniscalco's tandem repeat sorting algorithm. [5]
- - Larsson-Sadakane sorting algorithm. [4]
-
-
-References:
------------
-
- 1. Stefan Burkhardt and Juha K"arkk"ainen. Fast lightweight suffix
- array construction and checking. Proceedings of the 14th Annual
- Symposium on Combinatorial Pattern Matching, LNCS 2676,
- Springer, pp. 55-69, 2003.
-
- 2. Hideo Itoh and Hozumi Tanaka, An Efficient Method for in Memory
- Construction of Suffix Arrays, Proceedings of the IEEE String
- Processing and Information Retrieval Symposium, pp. 81-88, 1999.
-
- 3. Pang Ko and Srinivas Aluru, Space-efficient linear time
- construction of suffix arrays, Proceedings of the 14th Annual
- Symposium on Combinatorial Pattern Matching, pp. 200-210, 2003.
-
- 4. Jesper Larsson and Kunihiko Sadakane, Faster suffix sorting.
- Technical report LU-CS-TR:99-214, Department of Computer
- Science, Lund University, Sweden, 1999.
-
- 5. Michael Maniscalco, MSufSort.
- http://www.michael-maniscalco.com/msufsort.htm
-
- 6. Yuta Mori, Short description of improved two-stage suffix sorting
- algorithm, 2005.
- http://homepage3.nifty.com/wpage/software/itssort.txt