Home
last modified time | relevance | path

Searched refs:divs (Results 1 – 25 of 1649) sorted by relevance

12345678910>>...66

/dports/math/vtk9/VTK-9.1.0/Common/DataModel/Testing/Python/
H A DTestStaticPointLocator2.py93 divs = [1,1,1] variable
100 bbox.ComputeDivisions(targetBins,bounds,divs)
104 print(" Divisions: ({},{},{})".format(divs[0],divs[1],divs[2]))
105 if divs[0] != 1 or divs[1] != 1 or divs[2] != 1:
110 bbox.ComputeDivisions(targetBins,bounds,divs)
114 print(" Divisions: ({},{},{})".format(divs[0],divs[1],divs[2]))
115 if divs[0] != 1 or divs[1] != 1 or divs[2] != targetBins:
124 print(" Divisions: ({},{},{})".format(divs[0],divs[1],divs[2]))
125 if divs[0] != targetBins**(1/2.0) or divs[1] != 1 or divs[2] != targetBins**(1/2.0):
134 print(" Divisions: ({},{},{})".format(divs[0],divs[1],divs[2]))
[all …]
/dports/math/vtk8/VTK-8.2.0/Common/DataModel/Testing/Python/
H A DTestStaticPointLocator2.py93 divs = [1,1,1] variable
100 bbox.ComputeDivisions(targetBins,bounds,divs)
104 print(" Divisions: ({},{},{})".format(divs[0],divs[1],divs[2]))
105 if divs[0] != 1 or divs[1] != 1 or divs[2] != 1:
110 bbox.ComputeDivisions(targetBins,bounds,divs)
114 print(" Divisions: ({},{},{})".format(divs[0],divs[1],divs[2]))
115 if divs[0] != 1 or divs[1] != 1 or divs[2] != targetBins:
124 print(" Divisions: ({},{},{})".format(divs[0],divs[1],divs[2]))
125 if divs[0] != targetBins**(1/2.0) or divs[1] != 1 or divs[2] != targetBins**(1/2.0):
134 print(" Divisions: ({},{},{})".format(divs[0],divs[1],divs[2]))
[all …]
/dports/math/vtk9/VTK-9.1.0/Common/ExecutionModel/
H A DvtkThreadedImageAlgorithm.cxx192 divs[axis2] = q / divs[axis1]; in SplitExtent()
202 while (divs[axis0] * divs[axis1] < total) in SplitExtent()
219 divs[axis0] = total / divs[axis1]; in SplitExtent()
224 divs[axis1] = total / divs[axis0]; in SplitExtent()
228 divs[axis0] = total / divs[axis1]; in SplitExtent()
239 divs[axis2] = total / (divs[axis0] * divs[axis1]); in SplitExtent()
246 while (divs[0] * divs[1] * divs[2] < total) in SplitExtent()
301 divs[axis0] = total / (divs[axis1] * divs[axis2]); in SplitExtent()
306 divs[axis1] = total / (divs[axis0] * divs[axis2]); in SplitExtent()
311 divs[axis2] = total / (divs[axis0] * divs[axis1]); in SplitExtent()
[all …]
/dports/math/vtk8/VTK-8.2.0/Common/ExecutionModel/
H A DvtkThreadedImageAlgorithm.cxx198 divs[axis2] = q/divs[axis1]; in SplitExtent()
208 while (divs[axis0]*divs[axis1] < total) in SplitExtent()
225 divs[axis0] = total/divs[axis1]; in SplitExtent()
230 divs[axis1] = total/divs[axis0]; in SplitExtent()
234 divs[axis0] = total/divs[axis1]; in SplitExtent()
245 divs[axis2] = total/(divs[axis0]*divs[axis1]); in SplitExtent()
252 while (divs[0]*divs[1]*divs[2] < total) in SplitExtent()
307 divs[axis0] = total/(divs[axis1]*divs[axis2]); in SplitExtent()
312 divs[axis1] = total/(divs[axis0]*divs[axis2]); in SplitExtent()
317 divs[axis2] = total/(divs[axis0]*divs[axis1]); in SplitExtent()
[all …]
/dports/misc/rump/buildrump.sh-b914579/src/sys/external/bsd/drm2/dist/drm/nouveau/core/subdev/therm/
H A Dnouveau_subdev_therm_fanpwm.c48 u32 divs, duty; in nouveau_fanpwm_get() local
52 if (ret == 0 && divs) { in nouveau_fanpwm_get()
53 divs = max(divs, duty); in nouveau_fanpwm_get()
55 duty = divs - duty; in nouveau_fanpwm_get()
56 return (duty * 100) / divs; in nouveau_fanpwm_get()
68 u32 divs, duty; in nouveau_fanpwm_set() local
71 divs = priv->base.perf.pwm_divisor; in nouveau_fanpwm_set()
73 divs = 1; in nouveau_fanpwm_set()
76 divs /= priv->base.bios.pwm_freq; in nouveau_fanpwm_set()
81 duty = divs - duty; in nouveau_fanpwm_set()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/gpu/drm/nouveau/nvkm/subdev/therm/
H A Dfanpwm.c44 u32 divs, duty; in nvkm_fanpwm_get() local
48 if (ret == 0 && divs) { in nvkm_fanpwm_get()
49 divs = max(divs, duty); in nvkm_fanpwm_get()
51 duty = divs - duty; in nvkm_fanpwm_get()
52 return (duty * 100) / divs; in nvkm_fanpwm_get()
63 u32 divs, duty; in nvkm_fanpwm_set() local
66 divs = fan->base.perf.pwm_divisor; in nvkm_fanpwm_set()
68 divs = 1; in nvkm_fanpwm_set()
71 divs /= fan->base.bios.pwm_freq; in nvkm_fanpwm_set()
76 duty = divs - duty; in nvkm_fanpwm_set()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/gpu/drm/nouveau/nvkm/subdev/therm/
H A Dfanpwm.c44 u32 divs, duty; in nvkm_fanpwm_get() local
48 if (ret == 0 && divs) { in nvkm_fanpwm_get()
49 divs = max(divs, duty); in nvkm_fanpwm_get()
51 duty = divs - duty; in nvkm_fanpwm_get()
52 return (duty * 100) / divs; in nvkm_fanpwm_get()
63 u32 divs, duty; in nvkm_fanpwm_set() local
66 divs = fan->base.perf.pwm_divisor; in nvkm_fanpwm_set()
68 divs = 1; in nvkm_fanpwm_set()
71 divs /= fan->base.bios.pwm_freq; in nvkm_fanpwm_set()
76 duty = divs - duty; in nvkm_fanpwm_set()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/gpu/drm/nouveau/nvkm/subdev/therm/
H A Dfanpwm.c44 u32 divs, duty; in nvkm_fanpwm_get() local
48 if (ret == 0 && divs) { in nvkm_fanpwm_get()
49 divs = max(divs, duty); in nvkm_fanpwm_get()
51 duty = divs - duty; in nvkm_fanpwm_get()
52 return (duty * 100) / divs; in nvkm_fanpwm_get()
63 u32 divs, duty; in nvkm_fanpwm_set() local
66 divs = fan->base.perf.pwm_divisor; in nvkm_fanpwm_set()
68 divs = 1; in nvkm_fanpwm_set()
71 divs /= fan->base.bios.pwm_freq; in nvkm_fanpwm_set()
76 duty = divs - duty; in nvkm_fanpwm_set()
[all …]
/dports/math/libqalculate/libqalculate-3.17.0/libqalculate/
H A DMathStructure-gcd.cc918 if(divs[i].size() == 1) divs[i].setToChild(1); in do_simplification()
919 else if(divs[i].size() == 0) divs[i].clear(); in do_simplification()
954 divs[i] = cb; in do_simplification()
982 divs[0] = cb; in do_simplification()
1003 divs[1] = cb; in do_simplification()
1027divs[1].isAddition() && ((divs[0].isAddition() && divs[0].size() * divs[1].size() > 200) || (nums[… in do_simplification()
1032 divs[0].calculateMultiply(divs[1], eo2); in do_simplification()
1042 if(divs[0].isAddition()) size_1 += divs[0].size() - 1; in do_simplification()
1044 if(divs[1].isAddition()) size_2 += divs[1].size() - 1; in do_simplification()
1201 divs.clear(); in do_simplification()
[all …]
/dports/lang/v8/v8-9.6.180.12/tools/turbolizer/src/
H A Drange-view.ts455 this.view.divs.showOnLoad.appendChild(this.view.divs.wholeHeader);
460 this.view.divs.yAxis.appendChild(this.view.divs.registerHeaders);
584 this.view.divs.wholeHeader, this.view.divs.grid);
746 divs: Divs; property in ScrollHandler
754 constructor(divs: Divs) {
755 this.divs = divs;
770 const min = this.divs.grid.offsetTop + this.divs.grid.scrollTop - buffer;
865 divs: Divs; property in RangeView
885 this.divs = new Divs();
903 this.divs.container.appendChild(this.divs.content);
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/tools/turbolizer/src/
H A Drange-view.ts455 this.view.divs.showOnLoad.appendChild(this.view.divs.wholeHeader);
460 this.view.divs.yAxis.appendChild(this.view.divs.registerHeaders);
584 this.view.divs.wholeHeader, this.view.divs.grid);
746 divs: Divs; property in ScrollHandler
754 constructor(divs: Divs) {
755 this.divs = divs;
770 const min = this.divs.grid.offsetTop + this.divs.grid.scrollTop - buffer;
865 divs: Divs; property in RangeView
885 this.divs = new Divs();
903 this.divs.container.appendChild(this.divs.content);
[all …]
/dports/math/e-antic/e-antic-1.0.0-rc.13/libeantic/upstream/antic/nmod_mpoly/
H A Dmul_heap_threaded.c411 _div_struct * divs = arg->divs; in _nmod_mpoly_mul_heap_threaded_worker() local
476 divs[i].lower, divs[i].lower, in _nmod_mpoly_mul_heap_threaded_worker()
523 _nmod_mpoly_fit_length(&divs[i].Acoeff, &divs[i].Aexp, &divs[i].Aalloc, in _nmod_mpoly_mul_heap_threaded_worker()
528 &divs[i].Acoeff, &divs[i].Aexp, &divs[i].Aalloc, in _nmod_mpoly_mul_heap_threaded_worker()
536 &divs[i].Acoeff, &divs[i].Aexp, &divs[i].Aalloc, in _nmod_mpoly_mul_heap_threaded_worker()
566 _div_struct * divs = arg->divs; in _join_worker() local
649 divs[i].lower = FLINT_MIN(divs[i].lower, BClen); in _nmod_mpoly_mul_heap_threaded()
650 divs[i].lower = FLINT_MAX(divs[i].lower, WORD(0)); in _nmod_mpoly_mul_heap_threaded()
651 divs[i].upper = divs[i].lower; in _nmod_mpoly_mul_heap_threaded()
680 args[i].divs = divs; in _nmod_mpoly_mul_heap_threaded()
[all …]
/dports/math/e-antic/flint2-ae7ec89/nmod_mpoly/
H A Dmul_heap_threaded.c411 _div_struct * divs = arg->divs; in _nmod_mpoly_mul_heap_threaded_worker() local
476 divs[i].lower, divs[i].lower, in _nmod_mpoly_mul_heap_threaded_worker()
523 _nmod_mpoly_fit_length(&divs[i].Acoeff, &divs[i].Aexp, &divs[i].Aalloc, in _nmod_mpoly_mul_heap_threaded_worker()
528 &divs[i].Acoeff, &divs[i].Aexp, &divs[i].Aalloc, in _nmod_mpoly_mul_heap_threaded_worker()
536 &divs[i].Acoeff, &divs[i].Aexp, &divs[i].Aalloc, in _nmod_mpoly_mul_heap_threaded_worker()
566 _div_struct * divs = arg->divs; in _join_worker() local
649 divs[i].lower = FLINT_MIN(divs[i].lower, BClen); in _nmod_mpoly_mul_heap_threaded()
650 divs[i].lower = FLINT_MAX(divs[i].lower, WORD(0)); in _nmod_mpoly_mul_heap_threaded()
651 divs[i].upper = divs[i].lower; in _nmod_mpoly_mul_heap_threaded()
680 args[i].divs = divs; in _nmod_mpoly_mul_heap_threaded()
[all …]
/dports/math/Imath/Imath-3.1.4/src/ImathTest/
H A DtestFun.cpp158 assert (IMATH_INTERNAL_NAMESPACE::divs (5, 2) == 2 && in testFun()
160 assert (IMATH_INTERNAL_NAMESPACE::divs (4, 2) == 2 && in testFun()
162 assert (IMATH_INTERNAL_NAMESPACE::divs (3, 2) == 1 && in testFun()
164 assert (IMATH_INTERNAL_NAMESPACE::divs (2, 2) == 1 && in testFun()
166 assert (IMATH_INTERNAL_NAMESPACE::divs (1, 2) == 0 && in testFun()
168 assert (IMATH_INTERNAL_NAMESPACE::divs (0, 2) == 0 && in testFun()
170 assert (IMATH_INTERNAL_NAMESPACE::divs (-1, 2) == 0 && in testFun()
172 assert (IMATH_INTERNAL_NAMESPACE::divs (-2, 2) == -1 && in testFun()
174 assert (IMATH_INTERNAL_NAMESPACE::divs (-3, 2) == -1 && in testFun()
189 assert (IMATH_INTERNAL_NAMESPACE::divs (1, -2) == 0 && in testFun()
[all …]
/dports/math/e-antic/flint2-ae7ec89/fmpz_mpoly/
H A Dmul_heap_threaded.c459 _div_struct * divs = arg->divs; in _fmpz_mpoly_mul_heap_threaded_worker() local
523 divs[i].lower, divs[i].lower, in _fmpz_mpoly_mul_heap_threaded_worker()
568 _fmpz_mpoly_fit_length(&divs[i].Acoeff, &divs[i].Aexp, &divs[i].Aalloc, in _fmpz_mpoly_mul_heap_threaded_worker()
574 &divs[i].Acoeff, &divs[i].Aexp, &divs[i].Aalloc, in _fmpz_mpoly_mul_heap_threaded_worker()
582 &divs[i].Acoeff, &divs[i].Aexp, &divs[i].Aalloc, in _fmpz_mpoly_mul_heap_threaded_worker()
610 _div_struct * divs = arg->divs; in _join_worker() local
695 divs[i].lower = FLINT_MIN(divs[i].lower, BClen); in _fmpz_mpoly_mul_heap_threaded()
696 divs[i].lower = FLINT_MAX(divs[i].lower, WORD(0)); in _fmpz_mpoly_mul_heap_threaded()
697 divs[i].upper = divs[i].lower; in _fmpz_mpoly_mul_heap_threaded()
729 args[i].divs = divs; in _fmpz_mpoly_mul_heap_threaded()
[all …]
/dports/math/flint2/flint-2.8.4/fmpz_mpoly/
H A Dmul_heap_threaded.c459 _div_struct * divs = arg->divs; in _fmpz_mpoly_mul_heap_threaded_worker() local
523 divs[i].lower, divs[i].lower, in _fmpz_mpoly_mul_heap_threaded_worker()
568 _fmpz_mpoly_fit_length(&divs[i].Acoeff, &divs[i].Aexp, &divs[i].Aalloc, in _fmpz_mpoly_mul_heap_threaded_worker()
574 &divs[i].Acoeff, &divs[i].Aexp, &divs[i].Aalloc, in _fmpz_mpoly_mul_heap_threaded_worker()
582 &divs[i].Acoeff, &divs[i].Aexp, &divs[i].Aalloc, in _fmpz_mpoly_mul_heap_threaded_worker()
610 _div_struct * divs = arg->divs; in _join_worker() local
695 divs[i].lower = FLINT_MIN(divs[i].lower, BClen); in _fmpz_mpoly_mul_heap_threaded()
696 divs[i].lower = FLINT_MAX(divs[i].lower, WORD(0)); in _fmpz_mpoly_mul_heap_threaded()
697 divs[i].upper = divs[i].lower; in _fmpz_mpoly_mul_heap_threaded()
729 args[i].divs = divs; in _fmpz_mpoly_mul_heap_threaded()
[all …]
/dports/math/e-antic/e-antic-1.0.0-rc.13/libeantic/upstream/antic/fmpz_mpoly/
H A Dmul_heap_threaded.c459 _div_struct * divs = arg->divs; in _fmpz_mpoly_mul_heap_threaded_worker() local
523 divs[i].lower, divs[i].lower, in _fmpz_mpoly_mul_heap_threaded_worker()
568 _fmpz_mpoly_fit_length(&divs[i].Acoeff, &divs[i].Aexp, &divs[i].Aalloc, in _fmpz_mpoly_mul_heap_threaded_worker()
574 &divs[i].Acoeff, &divs[i].Aexp, &divs[i].Aalloc, in _fmpz_mpoly_mul_heap_threaded_worker()
582 &divs[i].Acoeff, &divs[i].Aexp, &divs[i].Aalloc, in _fmpz_mpoly_mul_heap_threaded_worker()
610 _div_struct * divs = arg->divs; in _join_worker() local
695 divs[i].lower = FLINT_MIN(divs[i].lower, BClen); in _fmpz_mpoly_mul_heap_threaded()
696 divs[i].lower = FLINT_MAX(divs[i].lower, WORD(0)); in _fmpz_mpoly_mul_heap_threaded()
697 divs[i].upper = divs[i].lower; in _fmpz_mpoly_mul_heap_threaded()
729 args[i].divs = divs; in _fmpz_mpoly_mul_heap_threaded()
[all …]
/dports/math/flint2/flint-2.8.4/nmod_mpoly/
H A Dmul_heap_threaded.c413 _div_struct * divs = arg->divs; in _nmod_mpoly_mul_heap_threaded_worker() local
478 divs[i].lower, divs[i].lower, in _nmod_mpoly_mul_heap_threaded_worker()
502 divs[i - 1].lower, divs[i - 1].lower, in _nmod_mpoly_mul_heap_threaded_worker()
566 _div_struct * divs = arg->divs; in _join_worker() local
581 memcpy(base->Acoeff + divs[i].Aoffset, divs[i].A->coeffs, in _join_worker()
584 memcpy(base->Aexp + N*divs[i].Aoffset, divs[i].A->exps, in _join_worker()
643 divs[i].lower = FLINT_MIN(divs[i].lower, BClen); in _nmod_mpoly_mul_heap_threaded()
644 divs[i].lower = FLINT_MAX(divs[i].lower, WORD(0)); in _nmod_mpoly_mul_heap_threaded()
645 divs[i].upper = divs[i].lower; in _nmod_mpoly_mul_heap_threaded()
674 args[i].divs = divs; in _nmod_mpoly_mul_heap_threaded()
[all …]
/dports/biology/rainbow/rainbow_2.0.4/
H A Dmergetag.c44 r = ref_recv(divs, i); in consensus()
56 r = ref_recv(divs, j); in consensus()
90 if(i < count_recv(divs) && ref_recv(divs, i)->gid == gid) continue; in merge_core()
101 if(i == count_recv(divs)) break; in merge_core()
103 gid = ref_recv(divs, i)->gid; in merge_core()
137 recv *divs; in main() local
168 divs = init_recv(1024); in main()
175 if(count_recv(divs)){ merge_core(divs, seqs, max_mm, task, blocks, out); } in main()
177 clear_recv(divs); in main()
182 r = next_ref_recv(divs); in main()
[all …]
/dports/math/octave-forge-signal/signal-1.4.1/src/
H A D__ultrwin__.cc103 int n, double mu, double x, double const * divs) in ultraspherical_polyval2() argument
109 r = ultraspherical_polyval(n, mu, x, divs); in ultraspherical_polyval2()
117 double lower_bound, double const *divs) in find_zero() argument
121 if (!divs) in find_zero()
169 make_divs(int n, double **divs) in make_divs() argument
172 if (!*divs) { in make_divs()
173 *divs = (double *)malloc(n * sizeof(**divs)); in make_divs()
174 if (*divs) in make_divs()
177 return *divs? *divs - 1 : 0; in make_divs()
181 #define DIVS make_divs(n, &divs)
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/cpufreq/
H A Ds3c2440-cpufreq.c124 cfg->divs.dvs = 1; in s3c2440_cpufreq_calcdivs()
127 cfg->divs.dvs = 0; in s3c2440_cpufreq_calcdivs()
133 cfg->divs.h_divisor = hdiv; in s3c2440_cpufreq_calcdivs()
134 cfg->divs.p_divisor = pdiv; in s3c2440_cpufreq_calcdivs()
157 cfg->divs.h_divisor, cfg->divs.p_divisor); in s3c2440_cpufreq_setdivs()
165 switch (cfg->divs.h_divisor) { in s3c2440_cpufreq_setdivs()
190 if (cfg->divs.p_divisor != cfg->divs.h_divisor) in s3c2440_cpufreq_setdivs()
206 clk_set_parent(armclk, cfg->divs.dvs ? hclk : fclk); in s3c2440_cpufreq_setdivs()
210 int *divs, in run_freq_for() argument
218 for (div = *divs; div > 0; div = *divs++) { in run_freq_for()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/cpufreq/
H A Ds3c2440-cpufreq.c124 cfg->divs.dvs = 1; in s3c2440_cpufreq_calcdivs()
127 cfg->divs.dvs = 0; in s3c2440_cpufreq_calcdivs()
133 cfg->divs.h_divisor = hdiv; in s3c2440_cpufreq_calcdivs()
134 cfg->divs.p_divisor = pdiv; in s3c2440_cpufreq_calcdivs()
157 cfg->divs.h_divisor, cfg->divs.p_divisor); in s3c2440_cpufreq_setdivs()
165 switch (cfg->divs.h_divisor) { in s3c2440_cpufreq_setdivs()
190 if (cfg->divs.p_divisor != cfg->divs.h_divisor) in s3c2440_cpufreq_setdivs()
206 clk_set_parent(armclk, cfg->divs.dvs ? hclk : fclk); in s3c2440_cpufreq_setdivs()
210 int *divs, in run_freq_for() argument
218 for (div = *divs; div > 0; div = *divs++) { in run_freq_for()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/cpufreq/
H A Ds3c2440-cpufreq.c124 cfg->divs.dvs = 1; in s3c2440_cpufreq_calcdivs()
127 cfg->divs.dvs = 0; in s3c2440_cpufreq_calcdivs()
133 cfg->divs.h_divisor = hdiv; in s3c2440_cpufreq_calcdivs()
134 cfg->divs.p_divisor = pdiv; in s3c2440_cpufreq_calcdivs()
157 cfg->divs.h_divisor, cfg->divs.p_divisor); in s3c2440_cpufreq_setdivs()
165 switch (cfg->divs.h_divisor) { in s3c2440_cpufreq_setdivs()
190 if (cfg->divs.p_divisor != cfg->divs.h_divisor) in s3c2440_cpufreq_setdivs()
206 clk_set_parent(armclk, cfg->divs.dvs ? hclk : fclk); in s3c2440_cpufreq_setdivs()
210 int *divs, in run_freq_for() argument
218 for (div = *divs; div > 0; div = *divs++) { in run_freq_for()
/dports/x11-toolkits/qt5-quickcontrols/kde-qtquickcontrols-5.15.2p3/src/controls/Styles/Android/
H A Dqquickandroid9patch.cpp149 inverted = divs.isEmpty() || divs.first().toInt() != 0; in fill()
152 data.reserve(divs.size() + 2); in fill()
155 data.reserve(divs.size() + 1); in fill()
158 for (const QVariant &div : divs) in fill()
203 void QQuickAndroid9Patch1::setXDivs(const QVariantList &divs) in setXDivs() argument
205 if (m_xVars != divs) { in setXDivs()
206 m_xVars = divs; in setXDivs()
210 emit xDivsChanged(divs); in setXDivs()
221 if (m_yVars != divs) { in setYDivs()
222 m_yVars = divs; in setYDivs()
[all …]
/dports/math/piranha/piranha-0.11/tests/
H A Ddivisor_02.cpp123 std::vector<T> divs; in operator ()() local
124 divs.resize(unsigned(ssize)); in operator ()()
126 std::generate(divs.begin(), divs.end(), [&ddist]() { return ddist(rng); }); in operator ()()
129 for (auto &dv : divs) { in operator ()()
148 for (auto &dv : divs) { in operator ()()
151 d.insert(divs.begin(), divs.end(), exp); in operator ()()
232 std::vector<T> divs; in operator ()() local
235 std::generate(divs.begin(), divs.end(), [&ddist]() { return ddist(rng); }); in operator ()()
238 for (auto &dv : divs) { in operator ()()
257 for (auto &dv : divs) { in operator ()()
[all …]

12345678910>>...66