Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
hexiaodongRUC committed Apr 17, 2018
1 parent e7f7d36 commit 8cbe584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ int main(int argc, char *argv[]){
}
double real_eps = eps * 80 * sqrt(1/ (double) ppr.g.m / (double) ppr.g.n / log(ppr.g.n)) / (double) log(k);
//TopPPR算法
double* resultList = ppr.TopPPR(test_node, real_eps, k, outputData, outputData2);
double* resultList = ppr.TopPPR(test_node, real_eps, k);
}
cout << "avg precision: " << ppr.avg_pre / (double) node_count << endl;
cout << "avg time: " << ppr.avg_time / (double) node_count << endl;
Expand Down

0 comments on commit 8cbe584

Please sign in to comment.