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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: bmtest.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:40:51  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: bmtest.cpp,v 1000.1 2004/06/01 19:40:51 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  Anatoliy Kuznetsov
  35.  *
  36.  * File Description: BM library (bitsets) test
  37.  *   
  38.  */   
  39. #include <ncbi_pch.hpp>
  40. #include <corelib/ncbistd.hpp>
  41. #include <util/bitset/ncbi_bitset.hpp>
  42. #include <test/test_assert.h>
  43. USING_NCBI_SCOPE;
  44. static
  45. void s_TEST_SetBit()
  46. {
  47.     bm::bvector<>   bv;    // Bitvector variable declaration.
  48.     unsigned cnt = bv.count();
  49.     assert(cnt == 0);
  50.     // Set some bits.
  51.     bv.set(10);
  52.     bv.set(100);
  53.     bv.set(1000000);
  54.     // New bitvector's count.
  55.     cnt = bv.count();
  56.     assert(cnt == 3);
  57.     // Print the bitvector.
  58.     unsigned value = bv.get_first();
  59.     do
  60.     {
  61.         value = bv.get_next(value);
  62.         if (value)
  63.         {
  64.             assert(value == 10 || value == 100 || value == 1000000);
  65.         }
  66.         else
  67.         {
  68.             break;
  69.         }
  70.     } while(1);
  71.     cout << endl;
  72.     bv.clear();   // Clean up.
  73.     
  74.     cnt = bv.count();
  75.     assert(cnt == 0);
  76.     // We also can use operators to set-clear bits;
  77.     bv[10] = true;
  78.     bv[100] = true;
  79.     bv[10000] = true;
  80.     cnt = bv.count();
  81.     assert(cnt == 3);
  82.     if (bv[10])
  83.     {
  84.         bv[10] = false;
  85.     }
  86.     
  87.     cnt = bv.count();
  88.     assert(cnt == 2);
  89. }
  90. int main(int, const char**)
  91. {
  92.     s_TEST_SetBit();
  93.     return 0;
  94. }
  95. /*
  96. * ===========================================================================
  97. *
  98. * $Log: bmtest.cpp,v $
  99. * Revision 1000.1  2004/06/01 19:40:51  gouriano
  100. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  101. *
  102. * Revision 1.2  2004/05/17 21:06:57  gorelenk
  103. * Added include of PCH ncbi_pch.hpp
  104. *
  105. * Revision 1.1  2004/04/14 14:47:29  kuznets
  106. * Initial revision
  107. *
  108. *
  109. * ===========================================================================
  110. */