Skip to content

Commit

Permalink
version 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
statsmaths authored and cran-robot committed Mar 24, 2023
1 parent 9c32b3b commit 44b74cb
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 12 deletions.
11 changes: 6 additions & 5 deletions DESCRIPTION
@@ -1,8 +1,8 @@
Package: leaderCluster
Type: Package
Title: Leader Clustering Algorithm
Version: 1.3
Date: 2022-08-12
Version: 1.5
Date: 2023-03-24
Author: Taylor B. Arnold
Maintainer: Taylor B. Arnold <tarnold2@richmond.edu>
Description: The leader clustering algorithm provides
Expand All @@ -15,8 +15,9 @@ Description: The leader clustering algorithm provides
formula, which takes latitude/longitude pairs as inputs and clusters
based on great circle distances.
License: LGPL-2
RoxygenNote: 7.2.1
LazyLoad: yes
NeedsCompilation: yes
Packaged: 2022-08-12 16:22:32 UTC; taylor
RoxygenNote: 7.2.3
Packaged: 2023-03-24 16:26:10 UTC; admin
Repository: CRAN
Date/Publication: 2022-08-17 09:30:06 UTC
Date/Publication: 2023-03-24 18:30:02 UTC
8 changes: 4 additions & 4 deletions MD5
@@ -1,8 +1,8 @@
b3b4f49519ddc7694f64c23550656699 *DESCRIPTION
7e72b07e54941bea83a2a4e3c1b9c7d5 *NAMESPACE
142cf97fce93b5455e47f318278776b1 *R/leaderCluster.R
fe41f8a47ed1bb0bba28a7974c624fc1 *DESCRIPTION
da302794bc23510bacf4066c69024d15 *NAMESPACE
316432aecc59020f93fc03538e95a2d5 *R/leaderCluster.R
69879d71b9d3863d19a04625c00d10aa *README.md
6815b530c5506f8a94affdbcd3067c41 *man/leaderCluster.Rd
2a1bce164485a073d93fd8954ef55dee *src/ctest.h
ba94691c579c49586fd59f9900caa608 *src/init.c
458feb314a3627708876e1d44ed89a08 *src/init.c
40457fbfcdda3abf2688292e9c5318e4 *src/leaderCluster.c
2 changes: 1 addition & 1 deletion NAMESPACE
@@ -1,2 +1,2 @@
export("leaderCluster")
useDynLib(leaderCluster, .registration = TRUE, .fixes = "C_")
useDynLib(leaderCluster, .registration = TRUE, .fixes = "C_")
2 changes: 1 addition & 1 deletion R/leaderCluster.R
Expand Up @@ -113,7 +113,7 @@ leaderCluster <- function(points, radius, weights = rep(1, nrow(points)), max_it
while (iter <= max_iter )
{

out = .C("leader_cluster",
out = .C(C_leader_cluster,
delta = as.double(radius),
points = as.double(points),
weights = as.double(weights),
Expand Down
2 changes: 1 addition & 1 deletion src/init.c
Expand Up @@ -14,7 +14,7 @@ static const R_CMethodDef R_CDef[] = {
{NULL, NULL, 0, NULL}
};

void R_init_dgof(DllInfo *dll)
void R_init_leaderCluster(DllInfo *dll)
{
R_registerRoutines(dll, R_CDef, NULL, NULL, NULL);
R_useDynamicSymbols(dll, FALSE);
Expand Down

0 comments on commit 44b74cb

Please sign in to comment.