bmconst.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:3k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: bmconst.h,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/21 16:00:32  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*
  10. Copyright (c) 2002,2003 Anatoliy Kuznetsov.
  11. Permission is hereby granted, free of charge, to any person 
  12. obtaining a copy of this software and associated documentation 
  13. files (the "Software"), to deal in the Software without restriction, 
  14. including without limitation the rights to use, copy, modify, merge, 
  15. publish, distribute, sublicense, and/or sell copies of the Software, 
  16. and to permit persons to whom the Software is furnished to do so, 
  17. subject to the following conditions:
  18. The above copyright notice and this permission notice shall be included 
  19. in all copies or substantial portions of the Software.
  20. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
  21. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
  22. OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
  23. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 
  24. DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 
  25. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 
  26. OTHER DEALINGS IN THE SOFTWARE.
  27. */
  28. #ifndef BMCONST__H__INCLUDED__
  29. #define BMCONST__H__INCLUDED__
  30. namespace bm
  31. {
  32. #ifdef _WIN32
  33. typedef unsigned __int64 id64_t;
  34. #else
  35. typedef unsigned long long id64_t;
  36. #endif
  37. typedef unsigned int   id_t;
  38. typedef unsigned int   word_t;
  39. typedef unsigned short short_t;
  40. const unsigned id_max = 0xFFFFFFFF;
  41. // Data Block parameters
  42. const unsigned set_block_size  = 2048u;
  43. const unsigned set_block_shift = 16u;
  44. const unsigned set_block_mask  = 0xFFFFu;
  45. const unsigned set_blkblk_mask = 0xFFFFFFu;
  46. // Word parameters
  47. const unsigned set_word_shift = 5u;
  48. const unsigned set_word_mask  = 0x1Fu;
  49. // GAP related parameters.
  50. typedef unsigned short gap_word_t;
  51. const unsigned gap_max_buff_len = 1280;
  52. const unsigned gap_max_bits = 65536;
  53. const unsigned gap_equiv_len = 
  54.    (sizeof(bm::word_t) * bm::set_block_size) / sizeof(gap_word_t);
  55. const unsigned gap_levels = 4;
  56. const unsigned gap_max_level = bm::gap_levels - 1;
  57. // Block Array parameters
  58. const unsigned set_array_size = 256u;
  59. const unsigned set_array_shift = 8u;
  60. const unsigned set_array_mask  = 0xFFu;
  61. const unsigned set_total_blocks = (bm::set_array_size * bm::set_array_size);
  62. const unsigned bits_in_block = bm::set_block_size * sizeof(bm::word_t) * 8;
  63. const unsigned bits_in_array = bm::bits_in_block * bm::set_array_size;
  64. #ifdef BM64OPT
  65. typedef id64_t  wordop_t;
  66. const id64_t    all_bits_mask = 0xffffffffffffffff;
  67. # define DECLARE_TEMP_BLOCK(x)  bm::id64_t x[bm::set_block_size / 2]; 
  68. const unsigned set_block_size_op  = bm::set_block_size / 2;
  69. #else
  70. typedef word_t wordop_t;
  71. const word_t all_bits_mask = 0xffffffff;
  72. # define DECLARE_TEMP_BLOCK(x)  unsigned x[bm::set_block_size]; 
  73. const unsigned set_block_size_op  = bm::set_block_size;
  74. #endif
  75. } // namespace
  76. #endif