Home
last modified time | relevance | path

Searched refs:maxdx (Results 1 – 25 of 39) sorted by relevance

12

/dports/science/octopus/octopus-10.5/src/opt_control/
H A Dopt_control_c_inc.F90158 subroutine opt_control_cg_write_info(iter, n, val, maxdx, maxdf, x) argument
160 REAL_DOUBLE, intent(in) :: val, maxdx, maxdf
179 write(message(5), '(6x,a,f12.5)') " => Delta = ", maxdx
183 call iteration_manager_main(iterator, j, j1, j2, TOFLOAT(maxdx))
233 subroutine opt_control_direct_message_info(iter, n, val, maxdx, x) argument
235 REAL_DOUBLE, intent(in) :: val, maxdx
260 write(message(5), '(6x,a,f12.5)') " => Delta = ", maxdx
264 call iteration_manager_main(iterator, j, j1, j2, TOFLOAT(maxdx))
/dports/games/shockolate/systemshock-0.8.2-43-ga9eb1b93/src/Libraries/VOX/Source/
H A Dvox3d.c88 fix maxdx; in vx_render() local
160maxdx = (psx<<1) + (vx->w*fix_abs(tmp[1]->sx) + vx->h*fix_abs(tmp[2]->sx) + vx->d*fix_abs(tmp[3]->… in vx_render()
165 if ((maxdy < 0) || (maxdx < 0)) { in vx_render()
170 maxdx = maxdx >> 1; in vx_render()
179 clip = ((tmp[0]->sx - maxdx) < 0) || ((tmp[0]->sx + maxdx) > fix_make(grd_bm.w,0)) || in vx_render()
/dports/graphics/mandelbulber/mandelbulber2-2.26/mandelbulber2/formula/definition/
H A Dfractal_transf_difs_hexprism.cpp72 double maxdx = max(dx, 0.0); in FormulaCode() local
75 tp = sqrt(maxdx * maxdx + maxdy * maxdy); in FormulaCode()
H A Dfractal_transf_difs_hexprism_v2.cpp103 double maxdx = max(dx, k.x); in FormulaCode() local
106 tp = sqrt(maxdx * maxdx + maxdy * maxdy); in FormulaCode()
/dports/graphics/mandelbulber/mandelbulber2-2.26/mandelbulber2/formula/opencl/
H A Dtransf_difs_hexprism.cl61 REAL maxdx = max(dx, 0.0f);
64 tp = native_sqrt(maxdx * maxdx + maxdy * maxdy);
H A Dtransf_difs_hexprism_v2.cl92 REAL maxdx = max(dx, k.x);
95 tp = native_sqrt(maxdx * maxdx + maxdy * maxdy);
/dports/astro/astrometry/astrometry.net-0.85/solver/
H A Dtweak.c90 double *maxdx, double *maxdy) { in get_dydx_range() argument
92 *maxdx = -1e100; in get_dydx_range()
101 *maxdx = MAX(dx, *maxdx); in get_dydx_range()
111 double mindx, double mindy, double maxdx, double maxdy, in get_shift() argument
133 … int ix = hszi * ( (dx - mindx) / (maxdx - mindx) ); // compute deltax using implicit floor in get_shift()
161 *xshift = (xs / (double)hsz) * (maxdx - mindx) + mindx; in get_shift()
163 debug("get_shift: mindx=%g, maxdx=%g, mindy=%g, maxdy=%g\n", mindx, maxdx, mindy, maxdy); in get_shift()
172 rho*t->mindx, rho*t->mindy, rho*t->maxdx, rho*t->maxdy, in do_entire_shift_operation()
717 &t->mindx, &t->mindy, &t->maxdx, &t->maxdy); in tweak_advance_to()
/dports/astro/stellarsolver/stellarsolver-1.8/stellarsolver/astrometry/blind/
H A Dtweak.c90 double *maxdx, double *maxdy) { in get_dydx_range() argument
92 *maxdx = -1e100; in get_dydx_range()
101 *maxdx = MAX(dx, *maxdx); in get_dydx_range()
111 double mindx, double mindy, double maxdx, double maxdy, in get_shift() argument
133 … int ix = hszi * ( (dx - mindx) / (maxdx - mindx) ); // compute deltax using implicit floor in get_shift()
161 *xshift = (xs / (double)hsz) * (maxdx - mindx) + mindx; in get_shift()
163 debug("get_shift: mindx=%g, maxdx=%g, mindy=%g, maxdy=%g\n", mindx, maxdx, mindy, maxdy); in get_shift()
172 rho*t->mindx, rho*t->mindy, rho*t->maxdx, rho*t->maxdy, in do_entire_shift_operation()
717 &t->mindx, &t->mindy, &t->maxdx, &t->maxdy); in tweak_advance_to()
/dports/science/octopus/octopus-10.5/src/main/
H A Dgeom_opt.F90653 subroutine write_iter_info(geom_iter, size, energy, maxdx, maxdf, coords) argument
656 REAL_DOUBLE, intent(in) :: energy, maxdx, maxdf
695 units_from_atomic(units_out%length,maxdx)
718 …call messages_write(maxdx, units = units_out%length, fmt = "f16.10,1x", print_units = .true., new_…
810 subroutine write_iter_info_ng(geom_iter, size, energy, maxdx, coords) argument
813 REAL_DOUBLE, intent(in) :: energy, maxdx
817 call write_iter_info(geom_iter, size, energy, maxdx, -M_ONE, coords)
/dports/x11-toolkits/tix/Tix8.4.3/library/
H A DSWindow.tcl248 set maxdx [expr $ww - $fw]
249 if {$data(dx) > $maxdx} {
250 set data(dx) $maxdx
/dports/games/rockdodger/rockdodger-1.1.4/
H A Dblubats.c296 const float maxdx = 35; in activate_one_dropping() local
302 if(bptr->dx > maxdx) { in activate_one_dropping()
303 x = bptr->dx / maxdx; //Scaling factor, otherwise our blubats always miss... in activate_one_dropping()
304 bptr->dx = maxdx; in activate_one_dropping()
/dports/science/InsightToolkit/ITK-5.0.1/Modules/ThirdParty/VNL/src/vxl/v3p/netlib/linalg/
H A DlsqrBase.cxx41 this->maxdx = 0; in lsqrBase()
261 this->maxdx = 0; in Solve()
493 this->maxdx = this->itn; in Solve()
727 (*this->nout) << this->maxdx; in TerminationPrintOut()
H A DlsqrBase.h325 unsigned int maxdx; variable
H A DlsmrBase.h522 unsigned int maxdx; variable
H A DlsmrBase.cxx54 this->maxdx = 0; in lsmrBase()
/dports/misc/vxl/vxl-3.3.2/v3p/netlib/linalg/
H A DlsqrBase.cxx41 this->maxdx = 0; in lsqrBase()
261 this->maxdx = 0; in Solve()
493 this->maxdx = this->itn; in Solve()
727 (*this->nout) << this->maxdx; in TerminationPrintOut()
H A DlsmrBase.h522 unsigned int maxdx; variable
H A DlsqrBase.h325 unsigned int maxdx; variable
H A DlsmrBase.cxx54 this->maxdx = 0; in lsmrBase()
/dports/graphics/dataplot/dataplot-2c1b27601a3b7523449de612613eadeead9a8f70/lib/macros/
H A DCOMPARATIVE_K1_ANALYSIS.DP50 delete maxdx; let maxdx = maximum dx
58 let upperxz = maxdx
/dports/lang/slib/slib-3b6/
H A Ddiffer.scm157 (define (fp:init! fp fpoff fill mindx maxdx)
159 (do ((idx (+ fpoff maxdx) (+ -1 idx)))
322 (let ((maxdx (if (negative? p-lim) (+ 1 N) (+ 1 p-lim (- N M))))
324 (fp:init! fp (- mindx) -1 mindx maxdx)
/dports/cad/impact/Impact/src/gui/
H A DPostProcessor.java503 tf_max.setText("" + maxdx); in jbInit()
504 tfmax = maxdx; in jbInit()
786 maxdx=Math.max(maxdx,p.x); in load()
927 clip_panel.sl_x.setMaximum((int)(maxx+maxdx+Math.abs(maxx*0.2))); in load()
1066 vLinesColor.addElement(getGradient((float)mindx,(float)p21.x,(float)maxdx)); in draw()
1067 vLinesColor.addElement(getGradient((float)mindx,(float)p22.x,(float)maxdx)); in draw()
1192 vQuadColor.addElement(getGradient((float)mindx,(float)p21.x,(float)maxdx)); in draw()
1193 vQuadColor.addElement(getGradient((float)mindx,(float)p22.x,(float)maxdx)); in draw()
1194 vQuadColor.addElement(getGradient((float)mindx,(float)p23.x,(float)maxdx)); in draw()
3429 else if(cb_result.getSelectedIndex()==1){max=maxdx; min=mindx;} in draw()
[all …]
/dports/astro/astrometry/astrometry.net-0.85/include/astrometry/
H A Dtweak.h68 double mindx, mindy, maxdx, maxdy; member
/dports/astro/stellarsolver/stellarsolver-1.8/stellarsolver/astrometry/include/astrometry/
H A Dtweak.h68 double mindx, mindy, maxdx, maxdy; member
/dports/science/madness/madness-ebb3fd7/src/apps/chem/
H A Dmolecular_optimizer.h203 double maxdx=dx.absmax(); in optimize_quasi_newton() local
204 if (h_is_identity and (maxdx>0.01)) step = QuasiNewton::line_search(1.0, f, in optimize_quasi_newton()

12