Home
last modified time | relevance | path

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

/dports/math/cado-nfs/cado-nfs-f4284e2391121b2bfb97bc4880b6273c7250dc2f/sieve/strategies/utils_st/
H A Dtab_point.h10 } tabular_point_t; typedef
16 tabular_point_t *tabular_point_create(void);
18 void tabular_point_free(tabular_point_t * t);
20 void tabular_point_realloc(tabular_point_t * t);
22 int tabular_point_get_index(tabular_point_t * t);
24 point_t *tabular_point_get_point(tabular_point_t * t, int index);
26 void tabular_point_add_point(tabular_point_t * t, point_t * pt);
28 void tabular_point_add(tabular_point_t * t, int numero, double x, double y);
H A Dtab_point.c7 tabular_point_t *tabular_point_create(void) in tabular_point_create()
9 tabular_point_t *t = malloc(sizeof(*t)); in tabular_point_create()
21 void tabular_point_free(tabular_point_t * t) in tabular_point_free()
29 void tabular_point_realloc(tabular_point_t * t) in tabular_point_realloc()
36 int tabular_point_get_index(tabular_point_t * t) in tabular_point_get_index()
41 point_t *tabular_point_get_point(tabular_point_t * t, int index) in tabular_point_get_point()
47 void tabular_point_add_point(tabular_point_t * t, point_t * pt) in tabular_point_add_point()
52 void tabular_point_add(tabular_point_t * t, int numero, double x, double y) in tabular_point_add()
H A Dconvex_hull.h12 int select_next_point(tabular_point_t * t, point_t * pt);
14 int search_init_point(tabular_point_t * t);
16 tabular_point_t *convex_hull(tabular_point_t * t);
H A Dconvex_hull.c53 int select_next_point(tabular_point_t * t, point_t * pt) in select_next_point()
74 int search_init_point(tabular_point_t * t) in search_init_point()
92 tabular_point_t *convex_hull(tabular_point_t * t) in convex_hull()
118 tabular_point_t *convex_hull = tabular_point_create(); in convex_hull()
/dports/math/cado-nfs/cado-nfs-f4284e2391121b2bfb97bc4880b6273c7250dc2f/tests/sieve/strategies/utils_st/
H A Dtest_convex_hull.c26 int check_points( tabular_point_t* t) in check_points()
47 tabular_point_t* list = tabular_point_create (); in main()
89 tabular_point_t* res = convex_hull (list); in main()
/dports/math/cado-nfs/cado-nfs-f4284e2391121b2bfb97bc4880b6273c7250dc2f/sieve/strategies/
H A Dgenerate_strategies.h54 tabular_point_t *convert_tab_point_to_tab_strategy(tabular_strategy_t * t);
56 tabular_strategy_t *convert_tab_strategy_to_tab_point(tabular_point_t * t,
H A Dgenerate_factoring_method.hpp86 tabular_point_t *convert_tab_point_to_tab_fm(tabular_fm_t * t);
88 tabular_fm_t *convert_tab_fm_to_tab_point(tabular_point_t * t,
H A Dgenerate_strategies.cpp562 tabular_point_t *convert_tab_point_to_tab_strategy(tabular_strategy_t * t) in convert_tab_point_to_tab_strategy()
564 tabular_point_t *res = tabular_point_create(); in convert_tab_point_to_tab_strategy()
574 tabular_strategy_t *convert_tab_strategy_to_tab_point(tabular_point_t * t, in convert_tab_strategy_to_tab_point()
588 tabular_point_t *tmp = convert_tab_point_to_tab_strategy(t); in convex_hull_strategy()
589 tabular_point_t *res = convex_hull(tmp); in convex_hull_strategy()
H A Dgenerate_factoring_method.cpp875 tabular_point_t *convert_tab_point_to_tab_fm(tabular_fm_t * t) in convert_tab_point_to_tab_fm()
877 tabular_point_t *res = tabular_point_create(); in convert_tab_point_to_tab_fm()
887 tabular_fm_t *convert_tab_fm_to_tab_point(tabular_point_t * t, in convert_tab_fm_to_tab_point()
901 tabular_point_t *tmp = convert_tab_point_to_tab_fm(t); in convex_hull_fm()
902 tabular_point_t *res = convex_hull(tmp); in convex_hull_fm()