Skip to content
Snippets Groups Projects
Commit 7212c6e3 authored by Stephan Schulz's avatar Stephan Schulz
Browse files

fix return type of all_get_gamma_c

parent 7197d1b7
No related branches found
No related tags found
1 merge request!8Refactor
...@@ -178,7 +178,7 @@ void all_balance_c(ALL_t *all_obj) { ...@@ -178,7 +178,7 @@ void all_balance_c(ALL_t *all_obj) {
ALL_catch ALL_catch
} }
double all_get_gamma_c(ALL_t *all_obj, double *gamma) { *gamma = all_obj->getGamma(); } void all_get_gamma_c(ALL_t *all_obj, double *gamma) { *gamma = all_obj->getGamma(); }
// wrapper to get number of new vertices // wrapper to get number of new vertices
void all_get_number_of_vertices_c(ALL_t *all_obj, int *n_vertices) { void all_get_number_of_vertices_c(ALL_t *all_obj, int *n_vertices) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment