PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ dbscan_test_3612b()

static void dbscan_test_3612b ( void  )
static

Definition at line 336 of file cu_geos_cluster.c.

337{
338 struct dbscan_test_info test;
339 char* wkt_inputs[] = { "POINT (1 1)" };
340
341 test.eps = 0.0;
342 test.min_points = 1;
343 uint32_t expected_ids[] = { 0 };
344 int expected_in_cluster[] = { 1 };
345 test.num_geoms = sizeof(wkt_inputs) / sizeof(char*);
346
347 test.expected_ids = expected_ids;
348 test.expected_in_cluster = expected_in_cluster;
349 test.wkt_inputs = wkt_inputs;
350 do_dbscan_test(test);
351}
static void do_dbscan_test(struct dbscan_test_info test)
uint32_t * expected_ids

References do_dbscan_test(), dbscan_test_info::eps, dbscan_test_info::expected_ids, dbscan_test_info::expected_in_cluster, dbscan_test_info::min_points, dbscan_test_info::num_geoms, and dbscan_test_info::wkt_inputs.

Referenced by geos_cluster_suite_setup().

Here is the call graph for this function:
Here is the caller graph for this function: