/* $Id: lexic.h 1107 2007-04-16 23:59:13Z rvernica $ Copyright (C) 2007 by The Regents of the University of California Redistribution of this file is permitted under the terms of the GNU Public License (GPL). Date: 01/14/2006 Author: Rares Vernica */ #ifndef _lexic_h_ #define _lexic_h_ #include "clusters.h" // the data set needs to be sorted class Lexic: public Clusters { public: Lexic(const vector *d, const unsigned clusterNo, const SampleType sampleType, const unsigned samplePer = 20, const unsigned queueSize = 10, const unsigned uniqueNo = 10); void buildClusters(); ostream& info(ostream& out); }; #endif