From 0967db80238a32b0a6d29d6eb9017cc73d8e3ca5 Mon Sep 17 00:00:00 2001 From: "osdl.net!shemminger" Date: Mon, 23 Aug 2004 20:21:21 +0000 Subject: [PATCH] Allow variable tablesize. 2004/08/10 10:46:09-07:00 osdl.net!shemminger Rename: tc/dist_pareto.c -> tc/pareto.c (Logical change 1.71) --- tc/pareto.c | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/tc/pareto.c b/tc/pareto.c index e69de29b..61cd6298 100644 --- a/tc/pareto.c +++ b/tc/pareto.c @@ -0,0 +1,43 @@ +/* + * Pareto distribution table generator + * Taken from the uncopyrighted NISTnet code. + */ +#include +#include +#include +#include + +#include +#include + +static const double a=3.0; +#define TABLESIZE 16384 +#define TABLEFACTOR TCA_NETEM_TABLEFACTOR + +int +main(int argc, char **argv) +{ + int i, n; + double dvalue; + + printf( +"# This is the distribution table for the pareto distribution.\n" + ); + + for (i = 65536, n = 0; i > 0; i -= 16) { + dvalue = (double)i/(double)65536; + dvalue = 1.0/pow(dvalue, 1.0/a); + dvalue -= 1.5; + dvalue *= (4.0/3.0)*(double)TABLEFACTOR; + if (dvalue > 32767) + dvalue = 32767; + + printf(" %d", (int)rint(dvalue)); + if (++n == 8) { + putchar('\n'); + n = 0; + } + } + + return 0; +}