Searched defs:max_iterations (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/libcola/
H A Dconjugate_gradient.cpp59 unsigned max_iterations) {
70 conjugate_gradient(vA,vx,vb,n,tol,max_iterations);
80 unsigned max_iterations) {
87 while(k < max_iterations && r_r > tol) {
54 conjugate_gradient(double **A, double *x, double *b, unsigned n, double tol, unsigned max_iterations) argument
76 conjugate_gradient(valarray<double> const &A, valarray<double> &x, valarray<double> const &b, unsigned n, double tol, unsigned max_iterations) argument
H A Dgradient_projection.h202 unsigned max_iterations,
210 tolerance(tol), acs(acs), max_iterations(max_iterations),
274 unsigned max_iterations; member in class:GradientProjection
196 GradientProjection( const Dim k, unsigned n, double** A, double* x, double tol, unsigned max_iterations, AlignmentConstraints* acs=NULL, bool nonOverlapConstraints=false, vpsc::Rectangle** rs=NULL, PageBoundaryConstraints *pbc = NULL, SimpleConstraints *sc = NULL) argument

Completed in 208 milliseconds