formula-with-inverse.h
来自「Ns2 TCP 协议改进 版本 」· C头文件 代码 · 共 28 行
H
28 行
#include "formula.h"double b_to_p(double b, double rtt, double tzero, int psize, int bval) { double p, pi, bres; int ctr=0; p=0.5;pi=0.25; while(1) { bres=p_to_b(p,rtt,tzero,psize, bval); /* * if we're within 5% of the correct value from below, this is OK * for this purpose. */ if ((bres>0.95*b)&&(bres<1.05*b)) return p; if (bres>b) { p+=pi; } else { p-=pi; } pi/=2.0; ctr++; if (ctr>30) { return p; } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?