Home
last modified time | relevance | path

Searched refs:get_distance (Results 26 – 50 of 459) sorted by relevance

12345678910>>...19

/dports/devel/tbb/oneTBB-2020.3/examples/concurrent_priority_queue/shortpath/
H A Dshortpath.cpp48 double get_distance(const point& p1, const point& p2) { in get_distance() function
119 … f_distance[src] = get_distance(vertices[src], vertices[dst]); // estimate distance from src to dst in shortpath()
144 double new_g_v = old_g_u + get_distance(vertices[u], vertices[v]); in shortpath_helper()
153 … new_f_v = f_distance[v] = g_distance[v] + get_distance(vertices[v], vertices[dst]); in shortpath_helper()
188 double seg_length = get_distance(vertices[path[i]], vertices[path[i+1]]); in print_path()
/dports/devel/onetbb/oneTBB-2021.4.0/examples/concurrent_priority_queue/shortpath/
H A Dshortpath.cpp47 double get_distance(const point& p1, const point& p2) { in get_distance() function
113 get_distance(vertices[src], vertices[dst]); // estimate distance from src to dst in shortpath()
138 double new_g_v = old_g_u + get_distance(vertices[u], vertices[v]); in shortpath_helper()
148 g_distance[v] + get_distance(vertices[v], vertices[dst]); in shortpath_helper()
190 double seg_length = get_distance(vertices[path[i]], vertices[path[i + 1]]); in print_path()
/dports/math/lidia/lidia-2.3.0+latte-patches-2014-10-04/src/number_fields/quadratic_order/
H A Dqi_class_real.cc1845 newdist = U.get_distance(); in convert_distance()
1859 newdist = U.get_distance(); in convert_distance()
2675 dist = SVAL->get_distance(); in is_principal_buch()
2680 dist = A.get_distance(); in is_principal_buch()
2687 dist = SVAL->get_distance(); in is_principal_buch()
2756 subtract(dist, D.get_distance(), SVAL->get_distance()); in is_principal_buch()
2766 subtract(dist, BB.get_distance(), SVAL->get_distance()); in is_principal_buch()
3127 dist = U.get_distance(); in is_equivalent_buch()
3144 dist.assign(C.get_distance()); in is_equivalent_buch()
3231 dist = U.get_distance(); in is_equivalent_subexp()
[all …]
/dports/deskutils/gnome-todo/gnome-todo-41.0/subprojects/libadwaita/src/
H A Dadw-swipeable.c50 g_return_val_if_fail (iface->get_distance != NULL, 0); in adw_swipeable_get_distance()
52 return iface->get_distance (self); in adw_swipeable_get_distance()
/dports/x11-toolkits/libadwaita/libadwaita-8442d6097b36c17e87582525ceab3ce3d5bccd48/src/
H A Dadw-swipeable.c50 g_return_val_if_fail (iface->get_distance != NULL, 0); in adw_swipeable_get_distance()
52 return iface->get_distance (self); in adw_swipeable_get_distance()
/dports/science/py-ase/ase-3.22.0/ase/test/calculator/turbomole/
H A Dtest_turbomole_h3o2m.py59 print(image.get_distance(1, 2), image.get_potential_energy())
65 print(image.get_distance(1, 2), image.get_potential_energy())
/dports/science/py-ase/ase-3.22.0/ase/test/precon/
H A Dtest_lbfgs.py39 a0 = cu0.get_distance(0, 1)
49 assert abs(cu.get_distance(0, 1)/a0 - 1.2) < 1e-3
/dports/science/py-ase/ase-3.22.0/ase/test/calculator/nwchem/
H A Dtest_nwchem_h3o2m.py67 print(image.get_distance(1, 2), image.get_potential_energy())
74 print(image.get_distance(1, 2), image.get_potential_energy())
/dports/games/solarus-quest-editor/solarus-quest-editor-e541e1312c242bff10aa1fb84a7eb8b6cb8504ba/assets/initial_quest/data/enemies/
H A Dgoblin_green.lua49 if behavior == "aggressive" and self:get_distance(hero) <= detection_distance then
56 if has_throwable_weapon and self:get_distance(hero) <= throw_axe_distance then
125 if enemy:get_distance(hero) > detection_distance then
128 elseif weapon == "club" and enemy:get_distance(hero) < club_attack_distance then
H A Dskelfos.lua182 local d = self:get_distance(hero)
258 if self:get_distance(hero) <= throw_head_distance then
268 if self:get_distance(hero) <= unattach_head_distance then
284 if self:get_distance(hero) <= throw_arms_distance then
351 local max_dist = enemy:get_distance(hero)
/dports/science/py-ase/ase-3.22.0/ase/test/constraints/
H A Dtest_fixinternals.py11 return sum([defin[2] * atoms.get_distance(*defin[0:2]) for
74 print('bond length before', atoms.get_distance(*bond_def))
84 new_bondlength = atoms.get_distance(*bond_def)
/dports/audio/lsp-plugins-lv2/lsp-plugins-1.1.31/src/plugins/
H A Dcomp_delay.cpp233 vPorts[DEL_DISTANCE] -> setValue(vDelay.get_distance()); in update_settings()
293 vPorts[DEL_DISTANCE] -> setValue(vDelay[0].get_distance()); in update_settings()
356 vPorts[DEL_DISTANCE_L] -> setValue(vDelay[0].get_distance()); in update_settings()
360 vPorts[DEL_DISTANCE_R] -> setValue(vDelay[1].get_distance()); in update_settings()
/dports/databases/postgresql96-server/postgresql-9.6.24/src/backend/utils/adt/
H A Drangetypes_selfuncs.c47 static float8 get_distance(TypeCacheEntry *typcache, RangeBound *bound1,
816 get_distance(TypeCacheEntry *typcache, RangeBound *bound1, RangeBound *bound2) in get_distance() function
1102 dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contained()
1115 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contained()
1201 prev_dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contains()
1214 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contains()
/dports/databases/postgresql96-plpython/postgresql-9.6.24/src/backend/utils/adt/
H A Drangetypes_selfuncs.c47 static float8 get_distance(TypeCacheEntry *typcache, RangeBound *bound1,
816 get_distance(TypeCacheEntry *typcache, RangeBound *bound1, RangeBound *bound2) in get_distance() function
1102 dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contained()
1115 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contained()
1201 prev_dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contains()
1214 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contains()
/dports/databases/postgresql96-pltcl/postgresql-9.6.24/src/backend/utils/adt/
H A Drangetypes_selfuncs.c47 static float8 get_distance(TypeCacheEntry *typcache, RangeBound *bound1,
816 get_distance(TypeCacheEntry *typcache, RangeBound *bound1, RangeBound *bound2) in get_distance() function
1102 dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contained()
1115 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contained()
1201 prev_dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contains()
1214 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contains()
/dports/databases/postgresql10-plperl/postgresql-10.19/src/backend/utils/adt/
H A Drangetypes_selfuncs.c47 static float8 get_distance(TypeCacheEntry *typcache, RangeBound *bound1,
806 get_distance(TypeCacheEntry *typcache, RangeBound *bound1, RangeBound *bound2) in get_distance() function
1092 dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contained()
1105 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contained()
1191 prev_dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contains()
1204 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contains()
/dports/databases/postgresql10-server/postgresql-10.19/src/backend/utils/adt/
H A Drangetypes_selfuncs.c47 static float8 get_distance(TypeCacheEntry *typcache, RangeBound *bound1,
806 get_distance(TypeCacheEntry *typcache, RangeBound *bound1, RangeBound *bound2) in get_distance() function
1092 dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contained()
1105 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contained()
1191 prev_dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contains()
1204 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contains()
/dports/databases/postgresql11-client/postgresql-11.14/src/backend/utils/adt/
H A Drangetypes_selfuncs.c47 static float8 get_distance(TypeCacheEntry *typcache, RangeBound *bound1,
806 get_distance(TypeCacheEntry *typcache, RangeBound *bound1, RangeBound *bound2) in get_distance() function
1092 dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contained()
1105 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contained()
1191 prev_dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contains()
1204 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contains()
/dports/databases/postgresql10-pltcl/postgresql-10.19/src/backend/utils/adt/
H A Drangetypes_selfuncs.c47 static float8 get_distance(TypeCacheEntry *typcache, RangeBound *bound1,
806 get_distance(TypeCacheEntry *typcache, RangeBound *bound1, RangeBound *bound2) in get_distance() function
1092 dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contained()
1105 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contained()
1191 prev_dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contains()
1204 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contains()
/dports/databases/postgresql10-client/postgresql-10.19/src/backend/utils/adt/
H A Drangetypes_selfuncs.c47 static float8 get_distance(TypeCacheEntry *typcache, RangeBound *bound1,
806 get_distance(TypeCacheEntry *typcache, RangeBound *bound1, RangeBound *bound2) in get_distance() function
1092 dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contained()
1105 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contained()
1191 prev_dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contains()
1204 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contains()
/dports/databases/postgresql10-contrib/postgresql-10.19/src/backend/utils/adt/
H A Drangetypes_selfuncs.c47 static float8 get_distance(TypeCacheEntry *typcache, RangeBound *bound1,
806 get_distance(TypeCacheEntry *typcache, RangeBound *bound1, RangeBound *bound2) in get_distance() function
1092 dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contained()
1105 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contained()
1191 prev_dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contains()
1204 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contains()
/dports/databases/postgresql10-docs/postgresql-10.19/src/backend/utils/adt/
H A Drangetypes_selfuncs.c47 static float8 get_distance(TypeCacheEntry *typcache, RangeBound *bound1,
806 get_distance(TypeCacheEntry *typcache, RangeBound *bound1, RangeBound *bound2) in get_distance() function
1092 dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contained()
1105 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contained()
1191 prev_dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contains()
1204 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contains()
/dports/databases/postgresql10-plpython/postgresql-10.19/src/backend/utils/adt/
H A Drangetypes_selfuncs.c47 static float8 get_distance(TypeCacheEntry *typcache, RangeBound *bound1,
806 get_distance(TypeCacheEntry *typcache, RangeBound *bound1, RangeBound *bound2) in get_distance() function
1092 dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contained()
1105 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contained()
1191 prev_dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contains()
1204 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contains()
/dports/databases/postgresql11-docs/postgresql-11.14/src/backend/utils/adt/
H A Drangetypes_selfuncs.c47 static float8 get_distance(TypeCacheEntry *typcache, RangeBound *bound1,
806 get_distance(TypeCacheEntry *typcache, RangeBound *bound1, RangeBound *bound2) in get_distance() function
1092 dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contained()
1105 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contained()
1191 prev_dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contains()
1204 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contains()
/dports/databases/postgresql11-plperl/postgresql-11.14/src/backend/utils/adt/
H A Drangetypes_selfuncs.c47 static float8 get_distance(TypeCacheEntry *typcache, RangeBound *bound1,
806 get_distance(TypeCacheEntry *typcache, RangeBound *bound1, RangeBound *bound2) in get_distance() function
1092 dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contained()
1105 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contained()
1191 prev_dist = get_distance(typcache, lower, upper); in calc_hist_selectivity_contains()
1204 dist = get_distance(typcache, &hist_lower[i], upper); in calc_hist_selectivity_contains()

12345678910>>...19