⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cpclique.pas

📁 生物信息学中的遗传数据分析的delphi源码。
💻 PAS
字号:
{$I CPDIR.INC}


{*
   Compatibility matrix

   2/13/91
*}

{*
   Need error checking:

   1. Too many clusters
   2. No room for work file

   Need to format matrix so that it
   doesn't exceed paper margins.
*}


unit cpclique;

interface

uses
   cpwbuf,   { line buffer }
   cpbits,   { bit masks }
   cpset,    { CLUSTEROBJ }
   cphset;   { HASH_TABLEOBJ }

const
   MAX_CLUSTERS = 240;
   MAX_COLS     = (MAX_CLUSTERS div BITS) - 1;

type
   {
      The compatibility matrix is implemented as an array of bit vectors,
      so that the matrix


          11001
          11011
          00111
          01111
          11111

      is stored as:


                          0          1            MAX_COLS
                    谀哪哪哪哪穆哪哪哪哪哪

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -