代码搜索:brent
找到约 735 项符合「brent」的源代码
代码结果 735
www.eeworm.com/read/414769/11102585
for brent.for
FUNCTION brent(ax,bx,cx,f,tol,xmin)
INTEGER ITMAX
REAL brent,ax,bx,cx,tol,xmin,f,CGOLD,ZEPS
EXTERNAL f
PARAMETER (ITMAX=100,CGOLD=.3819660,ZEPS=1.0e-10)
INTEGE
www.eeworm.com/read/391726/8386085
txt brent.txt
Function BRENT(AX, BX, CX, TOL:real;var XMIN:real):real;
label 1,2,3;
const
ITMAX = 100; CGOLD = 0.381966; ZEPS = 0.1e-9;
var
A,B,D,V,X,W,E,FV1,XM,TOL1,TOL2,FX,FW,P,Q,R,ETEMP,DUM,U,ZZ,F
www.eeworm.com/read/192256/8392609
txt brent.txt
Function BRENT(AX, BX, CX, TOL:real;var XMIN:real):real;
label 1,2,3;
const
ITMAX = 100; CGOLD = 0.381966; ZEPS = 0.1e-9;
var
A,B,D,V,X,W,E,FV1,XM,TOL1,TOL2,FX,FW,P,Q,R,ETEMP,DUM,U,ZZ,F
www.eeworm.com/read/291235/8433532
cpp brent.cpp
#include
#include
#include "nr.h"
using namespace std;
namespace {
inline void shft3(DP &a, DP &b, DP &c, const DP d)
{
a=b;
b=c;
c=d;
}
}
DP NR::brent(const
www.eeworm.com/read/387489/8671171
txt brent.txt
Function BRENT(AX, BX, CX, TOL:real;var XMIN:real):real;
label 1,2,3;
const
ITMAX = 100; CGOLD = 0.381966; ZEPS = 0.1e-9;
var
A,B,D,V,X,W,E,FV1,XM,TOL1,TOL2,FX,FW,P,Q,R,ETEMP,DUM,U,ZZ,F
www.eeworm.com/read/286289/8773873
c brent.c
www.eeworm.com/read/286289/8773913
cpp brent.cpp
www.eeworm.com/read/286289/8773986
exe brent.exe
www.eeworm.com/read/427960/8909713
c brent.c
/*
* Program to factor big numbers using Brent-Pollard method.
* See "An Improved Monte Carlo Factorization Algorithm"
* by Richard Brent in BIT Vol. 20 1980 pp 176-184
*
* Copyright
www.eeworm.com/read/427960/8909748
cpp brent.cpp
/*
* Program to factor big numbers using Brent-Pollard method.
* See "An Improved Monte Carlo Factorization Algorithm"
* by Richard Brent in BIT Vol. 20 1980 pp 176-184
*
* Requires: