Skip to content

Commit c479de3

Browse files
committed
test commit to see if new Rcppexports/NAMESPACE combo will work
1 parent 395d6a3 commit c479de3

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

NAMESPACE

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
useDynLib(RGraphM,.registration = TRUE, .fixes = "RGraphM_")
1+
useDynLib(RGraphM,.registration = TRUE)
22
importFrom(Rcpp, evalCpp)
33
export("run_graph_match")
4-
5-

R/RcppExports.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
33

44
run_graph_match <- function(A, B, algorithm_params) {
5-
.Call('RGraphM_run_graph_match', PACKAGE = 'RGraphM', A, B, algorithm_params)
5+
.Call(RGraphM_run_graph_match, A, B, algorithm_params)
66
}
77

src/graphm/algorithm.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
algorithm::algorithm(std::string fconfig)
2323
: rpc(fconfig)
2424
{
25-
gm_ldh=NULL;dalpha_ldh=0;bnosymm=false;
25+
gm_ldh=NULL;dalpha_ldh=0;bnosymm=false;df_norm=0;N=0;cdesc_matrix='';cscore_matrix='';
2626
}
2727
algorithm::algorithm()
2828
: rpc()

0 commit comments

Comments
 (0)