Import libcds.
[SXSI/libcds.git] / tests / static_sequence_gmr_chunk_test.cpp
1 /* static_sequence_gmr_chunk_test.cpp
2  * Copyright (C) 2008, Francisco Claude, all rights reserved.
3  *
4  * static_sequence_gmr_chunk_test
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #include <sys/stat.h>
23 #include <iostream>
24 #include <sstream>
25 #include <basics.h>
26 #include <static_bitsequence.h>
27 #include <static_bitsequence_builder.h>
28 #include <alphabet_mapper.h>
29 #include <static_sequence.h>
30 #include <static_sequence_builder.h>
31 #include "static_sequence_tester.h"
32
33 int main(int argc, char ** argv) {
34   if(argc!=6) {
35     cout << "Usage: " << argv[0] << " <file> <b|r> <sampling> <perm_samp> <t|s>" << endl;
36     return 0;
37   }
38   stringstream ss;
39   ss << argv[3];
40   uint samp;
41   ss >> samp;
42         stringstream ss2;
43         ss2 << argv[4];
44         uint perm_samp;
45         ss2 >> perm_samp;
46   
47   uint * text;
48   uint n;
49   load(argv[1],&text,&n);
50     
51   static_bitsequence_builder * bmb;
52   if(string(argv[2])==string("b"))
53     bmb = new static_bitsequence_builder_brw32(samp);
54   else
55     bmb = new static_bitsequence_builder_rrr02(samp);
56   
57         static_permutation_builder * spb = new static_permutation_builder_mrrr(perm_samp,bmb);
58   static_sequence_builder * ssb = new static_sequence_builder_gmr_chunk(bmb, spb);
59   static_sequence * sseq = ssb->build(text,n);
60   
61         delete bmb;
62         delete ssb;
63         delete spb;
64
65   sseq = savetest(argv[1], sseq);
66   if(string(argv[5])==string("t"))
67     test_static_sequence(text,n,sseq);
68   else 
69     cout << "Size: " << sseq->size() << endl;
70   cout << "*************************************" << endl;
71   speed_access(sseq,text,n);
72   cout << "*************************************" << endl;
73   speed_rank(sseq,text,n);
74   cout << "*************************************" << endl;
75   speed_select(sseq,text,n);
76   
77   delete sseq;
78   delete [] text;
79 }
80