Main Page | Namespace List | Class Hierarchy | Class List | Directories | File List | Namespace Members | Class Members | File Members

TestPKPrefix.C

Go to the documentation of this file.
00001 // Copyright (C) 2001, Compaq Computer Corporation
00002 // 
00003 // This file is part of Vesta.
00004 // 
00005 // Vesta is free software; you can redistribute it and/or
00006 // modify it under the terms of the GNU Lesser General Public
00007 // License as published by the Free Software Foundation; either
00008 // version 2.1 of the License, or (at your option) any later version.
00009 // 
00010 // Vesta is distributed in the hope that it will be useful,
00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00013 // Lesser General Public License for more details.
00014 // 
00015 // You should have received a copy of the GNU Lesser General Public
00016 // License along with Vesta; if not, write to the Free Software
00017 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00018 
00019 // Last modified on Thu Aug  5 10:04:00 EDT 2004 by ken@xorian.net  
00020 //      modified on Sat Feb 12 17:30:55 PST 2000 by mann  
00021 //      modified on Mon Sep 22 11:51:16 PDT 1997 by heydon
00022 
00023 // A test for the "PKPrefix" interface
00024 
00025 #include <Basics.H>
00026 #include <FP.H>
00027 #include "PKPrefix.H"
00028 
00029 using std::cout;
00030 using std::endl;
00031 
00032 static const int PKBits = 8 * sizeof(Word);
00033 static const int BitsPerArc = 4;
00034 static const int LoArcSz = 3;
00035 static const int HiArcSz = 5;
00036 
00037 int main() 
00038 {
00039     FP::Tag fp("Here is a random fingerprint");
00040     cout << "Original FP:" << endl;
00041     cout << "  " << fp << endl;
00042 
00043     for (int arcSz = LoArcSz; arcSz <= HiArcSz; arcSz++) {
00044         cout << "\nPrefixes (arc size = " << arcSz << " characters):\n";
00045         int arcBits = arcSz * BitsPerArc;
00046         for (int i = PKBits - arcBits; i > -arcBits; i -= arcBits) {
00047             i = max(i, 0);
00048             PKPrefix::T pfx(fp, i);
00049             cout << "  " << pfx << " -> ";
00050             cout << "\"" << pfx.Pathname(i, arcBits) << "\"" << endl;
00051         }
00052     }
00053     return 0;
00054 }

Generated on Mon May 8 00:48:32 2006 for Vesta by  doxygen 1.4.2