Home
last modified time | relevance | path

Searched refs:REL_TOL (Results 1 – 17 of 17) sorted by relevance

/dports/science/py-ase/ase-3.22.0/ase/test/lammpsdata/
H A Dtest_lammpsdata_read.py15 REL_TOL = 1e-2 variable
26 compare_with_pytest_approx(cell_read_in, cell_expected, REL_TOL)
31 compare_with_pytest_approx(masses_read_in, masses_expected, REL_TOL)
36 compare_with_pytest_approx(positions_read_in, positions_expected, REL_TOL)
41 compare_with_pytest_approx(velocities_read_in, velocities_expected, REL_TOL)
H A Dtest_lammpsdata_write.py12 REL_TOL = 1e-2 variable
29 compare_with_pytest_approx(cell_written, cell_expected, REL_TOL)
34 compare_with_pytest_approx(positions_written, positions_expected, REL_TOL)
39 compare_with_pytest_approx(velocities_written, velocities_expected, REL_TOL)
/dports/biology/diamond/diamond-2.0.13/src/lib/alp/
H A Dnjn_localmaxstatutil.cpp74 assert (Approx::relApprox (sum, 1.0, FUDGE * REL_TOL)); in flatten()
242 return Root::bisection (1.0, n_totalProbAssoc, p, q, REL_TOL * fabs (p - q)); in lambda()
282 return Root::bisection (0.0, n_meanAssoc, 0.0, lambda_, REL_TOL * fabs (p - q)); in thetaMin()
396 … const long int ITER_MIN = static_cast <long int> ((log (REL_TOL * (1.0 - rMin0)) / log (rMin0))); in descendingLadderEpochRepeat()
400 const long int Y_MAX = static_cast <long int> (-log (REL_TOL) / lambda0); in descendingLadderEpochRepeat()
475 assert (prob <= FUDGE * static_cast <double> (dimension_) * REL_TOL); in descendingLadderEpochRepeat()
507 return Approx::relApprox (sum, 1.0, REL_TOL); in isProbDist()
H A Dnjn_localmaxstatutil.hpp46 const double REL_TOL = 1.0e-6; variable
/dports/biology/mmseqs2/MMseqs2-13-45111/lib/alp/
H A Dnjn_localmaxstatutil.cpp74 assert (Approx::relApprox (sum, 1.0, FUDGE * REL_TOL)); in flatten()
242 return Root::bisection (1.0, n_totalProbAssoc, p, q, REL_TOL * fabs (p - q)); in lambda()
282 return Root::bisection (0.0, n_meanAssoc, 0.0, lambda_, REL_TOL * fabs (p - q)); in thetaMin()
396 … const long int ITER_MIN = static_cast <long int> ((log (REL_TOL * (1.0 - rMin0)) / log (rMin0))); in descendingLadderEpochRepeat()
400 const long int Y_MAX = static_cast <long int> (-log (REL_TOL) / lambda0); in descendingLadderEpochRepeat()
475 assert (prob <= FUDGE * static_cast <double> (dimension_) * REL_TOL); in descendingLadderEpochRepeat()
507 return Approx::relApprox (sum, 1.0, REL_TOL); in isProbDist()
H A Dnjn_localmaxstatutil.hpp46 const double REL_TOL = 1.0e-6; variable
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/algo/blast/gumbel_params/
H A Dnjn_localmaxstatutil.cpp85 _ASSERT(Approx::relApprox (sum, 1.0, FUDGE * REL_TOL)); in flatten()
255 return Root::bisection (1.0, n_totalProbAssoc, p, q, REL_TOL * fabs (p - q)); in lambda()
295 return Root::bisection (0.0, n_meanAssoc, 0.0, lambda_, REL_TOL * fabs (p - q)); in thetaMin()
416 const Int4 ITER_MIN = static_cast <Int4> ((log (REL_TOL * (1.0 - rMin0)) / log (rMin0))); in descendingLadderEpochRepeat()
420 const Int4 Y_MAX = static_cast <Int4> (-log (REL_TOL) / lambda0); in descendingLadderEpochRepeat()
497 _ASSERT (prob <= FUDGE * static_cast <double> (dimension_) * REL_TOL); in descendingLadderEpochRepeat()
529 return Approx::relApprox (sum, 1.0, REL_TOL); in isProbDist()
H A Dnjn_localmaxstatutil.hpp53 const double REL_TOL = 1.0e-6;
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/acc/
H A Dconstruct.pyx16 DEF REL_TOL = 1e-9
40 if not v2_isclose(p1, p2, REL_TOL, ABS_TOL):
200 if isclose(start, end, REL_TOL, ABS_TOL):
204 if isclose(start, end % 360.0, REL_TOL, ABS_TOL):
207 if not isclose(end, 360.0, REL_TOL, ABS_TOL):
H A Dbezier3p.pyx17 DEF REL_TOL = 1e-9
91 if isclose(t1, 1.0, REL_TOL, ABS_TOL):
H A Dbspline.pyx27 DEF REL_TOL = 1e-9
301 if isclose(u, basis.max_t, REL_TOL, ABS_TOL):
326 if isclose(u, basis.max_t, REL_TOL, ABS_TOL):
H A Dbezier4p.pyx27 DEF REL_TOL = 1e-9
103 if isclose(t1, 1.0, REL_TOL, ABS_TOL):
H A Dvector.pyx10 DEF REL_TOL = 1e-9
201 def isclose(self, other: 'VecXY', *, double rel_tol=REL_TOL,
547 def is_parallel(self, other: 'Vertex', *, double rel_tol=REL_TOL,
597 def isclose(self, other: 'Vertex', *, double rel_tol = REL_TOL,
H A Dmatrix44.pyx19 DEF REL_TOL = 1e-9
191 return v3_isclose(x_axis, self.get_ux(), REL_TOL, ABS_TOL)
/dports/cad/ngspice_rework/ngspice-35/src/maths/poly/
H A Dpolyfit.c89 #define REL_TOL 0.001 in ft_polyfit() macro
106 ABS_TOL) > REL_TOL) { in ft_polyfit()
/dports/cad/gtkwave/gtkwave-3.3.107/src/
H A Dinterp.c199 #define REL_TOL 0.001 in ft_polyfit() macro
219 ABS_TOL) > REL_TOL) in ft_polyfit()
/dports/cad/jspice3/jspice3-2.5/src/lib/fte/
H A Dinterp.c233 #define REL_TOL 0.001 macro
251 ABS_TOL) > REL_TOL) {