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

◆ dbscan_test_3612a()

static void dbscan_test_3612a ( void  )
static

Definition at line 319 of file cu_geos_cluster.c.

320{
321 struct dbscan_test_info test;
322 char* wkt_inputs[] = { "POINT (1 1)" };
323
324 test.eps = 0.0;
325 test.min_points = 5;
326 uint32_t expected_ids[] = { rand() };
327 int expected_in_cluster[] = { 0 };
328 test.num_geoms = sizeof(wkt_inputs) / sizeof(char*);
329
330 test.expected_ids = expected_ids;
331 test.expected_in_cluster = expected_in_cluster;
332 test.wkt_inputs = wkt_inputs;
333 do_dbscan_test(test);
334}
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: