Copyright 2010-2012, Pekka Mikkola, pmikkol (at) gmail.com Dominik Kempa, dominik.kempa (at) cs.helsinki.fi This file is part of bwtc. bwtc is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. bwtc is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with bwtc. If not, see <http://www.gnu.org/licenses/>. Burrows-Wheeler Transform based compression program At the moment the compression and decompression works as it should. There is still lot of development ideas, so the compressed file format may and will change in the near future. ... In Linux you can compile this by first generating makefiles with CMake. Go to the root-directory and type 'cmake -DCMAKE_BUILD_TYPE=type .', where type is 'Release' or 'Debug' After this program can be compiled by saying 'make'. Tests are run by 'make test'. Profiling can be turned on by giving "-D PROFILER=1" to cmake, for example: 'cmake -DCMAKE_BUILD_TYPE=Release -D PROFILER=1 .' ...