Skip to content

Commit

Permalink
Fix Rprintf
Browse files Browse the repository at this point in the history
  • Loading branch information
alanocallaghan committed Mar 5, 2024
1 parent 79683f3 commit b709801
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: densvis
Title: Density-Preserving Data Visualization via Non-Linear Dimensionality Reduction
Version: 1.13.1
Date: 2023-09-03
Version: 1.13.2
Date: 2024-03-05
Authors@R:
c(
person(
Expand Down
2 changes: 1 addition & 1 deletion src/densvis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Rcpp::NumericMatrix densne_cpp(
double * data=X.begin();

if (verbose) {
Rprintf("Read the %i x %i data matrix successfully!\n", N, D);
Rprintf("Read the %i x %llu data matrix successfully!\n", N, D);
}

std::vector<double> Y(N * no_dims), costs(N), itercosts(static_cast<int>(std::ceil(max_iter/50.0)));
Expand Down

0 comments on commit b709801

Please sign in to comment.