Skip to content

Commit 88ce37a

Browse files
committed
more tweaks
1 parent d4a08fe commit 88ce37a

File tree

11 files changed

+2474
-98
lines changed

11 files changed

+2474
-98
lines changed

.Rbuildignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@
88
^data-raw$
99
src/*.o
1010
src/*.so
11-
src/*.dll
11+
src/*.dll
12+
^doc$
13+
^Meta$

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# R specific
1+
# R specific
22
.Rproj.user/
33
.Rhistory
44
.RData
@@ -38,3 +38,4 @@ Thumbs.db
3838
# Private/local configuration
3939
.env
4040
config_local.*
41+
/Meta/

DESCRIPTION

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ Type: Package
33
Title: Fast Graph Connectivity Analysis Using C++
44
Version: 0.1.0
55
Author: Kyle Haynes
6-
Maintainer: Kyle Haynes
76
Description: High-performance graph connectivity analysis for large-scale datasets.
87
Uses optimized C++ algorithms via Rcpp to handle hundreds of millions of
98
node pairs efficiently. Provides functions for finding connected components,

NAMESPACE

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ useDynLib(graphfast, .registration=TRUE)
22
export(group_id)
33
export(add_group_ids)
44
export(print.group_id_result)
5+
export("%fgrepl%")
6+
export("%fgrepli%")
7+
export(multi_grepl_cpp)
8+
export(multi_grepl_any_cpp)
9+
export(multi_grepl_any_fast_cpp)
510
importFrom(Rcpp, evalCpp)
611
exportPattern("^[[:alpha:]]+")
712
importFrom("methods", "new")

build_package.R

Lines changed: 0 additions & 60 deletions
This file was deleted.

build_string_functions.R

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)