Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Linux/LargeVis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ void LargeVis::run_propagation()
{
for (int i = 0; i < n_propagations; ++i)
{
printf("Running propagation %d/%d%c", i + 1, n_propagations, 13);
printf("Running propagation %d/%lld%c", i + 1, n_propagations, 13);
fflush(stdout);
old_knn_vec = knn_vec;
knn_vec = new std::vector<int>[n_vertices];
Expand Down Expand Up @@ -687,4 +687,4 @@ void LargeVis::run(long long out_d, long long n_thre, long long n_samp, long lon
}
if (vec) { clean_graph(); construt_knn(); }
visualize();
}
}