pongsim_zipf
index
u:\f\project - pongsim\pongsim850\pongsim_zipf.py

PONGsim (Python Overlay Network Graphical Simulator)
Zipf random number generator
 
Module version: 1.11
 
Nicklas Beijar, nbeijar@netlab.tkk.fi
Networking Laboratory, Helsinki University of Technology
 
######################################################################
 
Simulator for search algorithms in unstructured peer-to-peer networks
 
Copyright (c) 2005-2010 Nicklas Beijar
 
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
 
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
 
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
 
######################################################################

 
Modules
       
random

 
Classes
       
Zipf

 
class Zipf
     Methods defined here:
__init__(self, order, skew)
Initialize the zipf random number generator with a given order and a given skew.
distribution(self)
Generate a random order, where the probability of the orders follow the zipf distribution.
map(self, order)
Map an order to an element.
random(self)
Generate a random element, where the probability of the elements follow the zipf distribution.

 
Functions
       
test(size=50, skew=1)
Perform a self-test for debugging purposes.