hits.cpp

来自「粗慥集成算法集合 ,并有详细的文档资料和测试数据处」· C++ 代码 · 共 28 行

CPP
28
字号
// Hits.cpp: implementation of the Hits class.
//
//////////////////////////////////////////////////////////////////////

#include <stdafx.h> // Added 980901 by Aleksander 踙rn.
#include "../copyright.h" // Added 000323 by Aleksander 豩rn.

#include "Hits.h"
#include "HitsMessage.h"
#include <kernel/system/assert.h>
#include "HitsKeeper.h"

void simplify(const Vector(Bits) &in, 
              Vector(Bits) &out, 
              const Vector(HittingSetInfo) &w_in, 
              Vector(HittingSetInfo) &w_out);
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////



Hits::Hits(const Vector(const Bits*) &bits, Parameters &parameters)
  : sets(bits), 
    params(parameters) 
{

  stat_initialized = 0; // Added 990317 by A

⌨️ 快捷键说明

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