资源简介
51622469glomosim-2.03.rar

代码片段和文件信息
/*
* GloMoSim is COPYRIGHTED software. Release 2.02 of GloMoSim is available
* at no cost to educational users only.
*
* Commercial use of this software requires a separate license. No cost
* evaluation licenses are available for such purposes; please contact
* info@scalable-networks.com
*
* By obtaining copies of this and any other files that comprise GloMoSim2.02
* you the Licensee agree to abide by the following conditions and
* understandings with respect to the copyrighted software:
*
* 1.Permission to use copy and modify this software and its documentation
* for education and non-commercial research purposes only is hereby granted
* to Licensee provided that the copyright notice the original author‘s
* names and unit identification and this permission notice appear on all
* such copies and that no charge be made for such copies. Any entity
* desiring permission to use this software for any commercial or
* non-educational research purposes should contact:
*
* Professor Rajive Bagrodia
* University of California Los Angeles
* Department of Computer Science
* Box 951596
* 3532 Boelter Hall
* Los Angeles CA 90095-1596
* rajive@cs.ucla.edu
*
* 2.NO REPRESENTATIONS ARE MADE ABOUT THE SUITABILITY OF THE SOFTWARE FOR ANY
* PURPOSE. IT IS PROVIDED “AS IS“ WITHOUT EXPRESS OR IMPLIED WARRANTY.
*
* 3.Neither the software developers the Parallel Computing Lab UCLA or any
* affiliate of the UC system shall be liable for any damages suffered by
* Licensee from the use of this software.
*/
// Use the latest version of Parsec if this line causes a compiler error.
/*
* $Id: http_distribution.cv 1.1 2000/01/10 09:09:34 gandy Exp $
*
* This file contains C functions which approximate the functionality of
* Bruce Mah‘s CDF processing class functions. It also contains all of the
* CDFs that Bruce Mah has created from network traces.
*
* This code is adapted from the work published by Bruce Mah.
* B. Mah “An Empirical Model of HTTP Network Traffic“
* Proceedings of INFOCOM ‘97 Kobe Japan April 1997.
* http://www.ca.sandia.gov/~bmah/Papers/Http-Infocom.ps
*
* Send questions to Julian Hsu
*/
#include
#include
#include “http_distribution.h“
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
double DoubleDistEmpiricalIntegralInterpolate(
double x1 double x2 double y1 double y2 double x)
{
return ceil((y1 + ((y2 - y1) / (x2 - x1)) * (x - x1)));
}
double DoubleDistEmpiricalContinuousInterpolate(
double x1 double x2 double y1 double y2 double x)
{
return (y1 + ((y2 - y1) / (x2 - x1)) * (x - x1));
}
int DoubleDistFindIndex(const DoubleDistElement *array
const long count double value)
{
int top = count - 1
bottom = 0
current;
#ifdef DEBUG
printf(“ findindex start value = %f ind0.val = %f\n“ value array[0].cdf)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 132431 2001-09-13 15:00 glomosim-2.03\parsec\aix\bin\parsecc
文件 132431 2001-09-13 15:00 glomosim-2.03\parsec\aix\bin\pcc
文件 1071 2001-09-13 15:00 glomosim-2.03\parsec\aix\doc\help.txt
文件 2363 2001-09-13 15:00 glomosim-2.03\parsec\aix\include\clocktype.h
文件 6744 2001-09-13 15:00 glomosim-2.03\parsec\aix\include\pc_api.h
文件 894 2001-09-13 15:00 glomosim-2.03\parsec\aix\runtime\main.o
文件 40310 2001-09-13 15:00 glomosim-2.03\parsec\aix\runtime\gel_unsigned.o
文件 41182 2001-09-13 15:00 glomosim-2.03\parsec\aix\runtime\gel_longlong.o
文件 85607 2001-09-13 15:00 glomosim-2.03\parsec\freebsd-3.3\bin\parsecc
文件 85607 2001-09-13 15:00 glomosim-2.03\parsec\freebsd-3.3\bin\pcc
文件 1071 2001-09-13 15:00 glomosim-2.03\parsec\freebsd-3.3\doc\help.txt
文件 6816 2001-09-13 15:00 glomosim-2.03\parsec\freebsd-3.3\include\pc_api.h
文件 2409 2001-09-13 15:00 glomosim-2.03\parsec\freebsd-3.3\include\clocktype.h
文件 788 2001-09-13 15:00 glomosim-2.03\parsec\freebsd-3.3\runtime\main.o
文件 21737 2001-09-13 15:00 glomosim-2.03\parsec\freebsd-3.3\runtime\gel_unsigned.o
文件 22761 2001-09-13 15:00 glomosim-2.03\parsec\freebsd-3.3\runtime\gel_longlong.o
文件 154892 2001-09-13 15:00 glomosim-2.03\parsec\irix-6.4\bin\parsecc
文件 154892 2001-09-13 15:00 glomosim-2.03\parsec\irix-6.4\bin\pcc
文件 1071 2001-09-13 15:00 glomosim-2.03\parsec\irix-6.4\doc\help.txt
文件 2409 2001-09-13 15:00 glomosim-2.03\parsec\irix-6.4\include\clocktype.h
文件 6816 2001-09-13 15:00 glomosim-2.03\parsec\irix-6.4\include\pc_api.h
文件 956 2001-09-13 15:00 glomosim-2.03\parsec\irix-6.4\runtime\main.o
文件 39948 2001-09-13 15:00 glomosim-2.03\parsec\irix-6.4\runtime\gel_unsigned.o
文件 39476 2001-09-13 15:00 glomosim-2.03\parsec\irix-6.4\runtime\gel_longlong.o
文件 71244 2001-09-13 15:00 glomosim-2.03\parsec\irix-6.4\runtime\mpc_none.o
文件 100195 2001-09-13 15:00 glomosim-2.03\parsec\redhat-6.0\bin\parsecc
文件 100195 2001-09-13 15:00 glomosim-2.03\parsec\redhat-6.0\bin\pcc
文件 1071 2001-09-13 15:00 glomosim-2.03\parsec\redhat-6.0\doc\help.txt
文件 2409 2001-09-13 15:00 glomosim-2.03\parsec\redhat-6.0\include\clocktype.h
文件 6865 2001-09-13 15:00 glomosim-2.03\parsec\redhat-6.0\include\pc_api.h
............此处省略569个文件信息
相关资源
- vspd7.2.308.zip
- 价值2k的H漫画小说系统
- Pythonamp;课堂amp;笔记(高淇amp;400;集第
- ddos压力测试工具99657
- UML建模大全
- 开源1A锂电池充电板TP4056原理图+PCB
- m1卡 ic卡可选择扇区初始化加密软件
- TSCC.exe
- FTP课程设计(服务端+客户端)
- 计算机图形学 边填充算法实现代码
- 电力系统潮流计算程序集合
- oracle数据迁移项目实施方案
- Web Api 通过文件流 文件到本地
- Visio图标-最新最全的网络通信图标库
- Spire API文档
- OpenGL参考手册
- Python中Numpy库最新教程
- SPD博士V5.3.exe
- 直流无刷电机方波驱动 stm32 例程代码
- layui后台管理模板
- 仿知乎界面小程序源代码
- 云平台-阿里云详细介绍
- photoshop经典1000例
- scratch垃圾分类源码(最终版本).sb
- IAR ARM 7.8破解
- TI CCS V5.4 安装步骤及破解文件
- 松下plc FP-XH的驱动
- 局域网硬件信息收集工具
- 加快Windows XP操作系统开机速度
- 联想启天M4350 BIOS升级文件
评论
共有 条评论