Home
last modified time | relevance | path

Searched refs:stack_locs (Results 1 – 9 of 9) sorted by relevance

/dports/games/freecell-solver/freecell-solver-6.2.0/
H A Dstate.c99 const_AUTO(swap_loc, locs->stack_locs[c]); in fc_solve_canonize_state_with_locs()
100 locs->stack_locs[c] = locs->stack_locs[c - 1]; in fc_solve_canonize_state_with_locs()
101 locs->stack_locs[c - 1] = swap_loc; in fc_solve_canonize_state_with_locs()
175 size_t stack_locs[MAX_NUM_STACKS]; in fc_solve_state_as_string() local
184 stack_locs[i] = i; in fc_solve_state_as_string()
197 stack_locs[(int)(state_locs->stack_locs[i])] = i; in fc_solve_state_as_string()
271 const size_t col_len = fcs_state_col_len(*state, stack_locs[s]); in fc_solve_state_as_string()
282 const_AUTO(col, fcs_state_get_col(*state, stack_locs[s])); in fc_solve_state_as_string()
349 const_AUTO(col, fcs_state_get_col(*state, stack_locs[s])); in fc_solve_state_as_string()
H A Dmove.h147 out_move, locs->stack_locs[(int)fcs_int_move_get_src(in_move)]); in fc_solve_move_stack_normalize()
166 locs->stack_locs[(int)fcs_int_move_get_dest(in_move)]); in fc_solve_move_stack_normalize()
H A Dstate.h265 fcs_locs_type stack_locs[MAX_NUM_STACKS]; member
275 locs->stack_locs[i] = (fcs_locs_type)i; in fc_solve_init_locs()
H A DNEWS.asciidoc833 17. Implement FCS_WITHOUT_LOCS_FIELDS . This removes the fc_locs / stack_locs
/dports/math/py-arviz/arviz-0.11.4/arviz/plots/
H A Ddotplot.py203 stack_locs, stack_counts = [], []
213 stack_locs.append((stack_first_dot + values[count - 1]) / 2)
216 return stack_locs, stack_counts
219 def layout_stacks(stack_locs, stack_counts, binwidth, stackratio, rotated): argument
224 x = np.repeat(stack_locs, stack_counts)
/dports/math/py-arviz/arviz-0.11.4/arviz/plots/backends/bokeh/
H A Ddotplot.py94 stack_locs, stack_count = wilkinson_algorithm(values, binwidth)
95 x, y = layout_stacks(stack_locs, stack_count, binwidth, stackratio, rotated)
/dports/math/py-arviz/arviz-0.11.4/arviz/plots/backends/matplotlib/
H A Ddotplot.py97 stack_locs, stack_count = wilkinson_algorithm(values, binwidth)
98 x, y = layout_stacks(stack_locs, stack_count, binwidth, stackratio, rotated)
/dports/devel/elfutils/elfutils-0.179/libdw/
H A Ddwarf_getlocation.c273 struct loclist stack_locs[MAX_STACK_LOCS]; in __libdw_intern_expression() local
276 ? &stack_locs[n] \ in __libdw_intern_expression()
/dports/math/py-arviz/arviz-0.11.4/arviz/tests/base_tests/
H A Dtest_plots_matplotlib.py1545 stack_locs, stack_counts = wilkinson_algorithm([0.0, 1.0, 1.8, 3.0, 5.0], 1.0)
1546 assert stack_locs == [0.0, 1.4, 3.0, 5.0]