Skip to content

Commit

Permalink
fix solaris bug
Browse files Browse the repository at this point in the history
  • Loading branch information
adalisan committed Aug 9, 2017
1 parent ecd24f0 commit b5dc716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graphm/algorithm_path.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ match_result algorithm_path::match(graph& g, graph& h,gsl_matrix* gm_P_i, gsl_ma
gm_P_bp_temp=gsl_matrix_alloc(N, N);
gm_P_bp=gsl_matrix_alloc(N, N);
};
int Nqua = pow(N, 4);
long Nqua = pow(N, (int)4);
//*************ALGORITHM***********************
bool bpath_continue=true;
double dlambda_add=dlambda_min;
Expand Down

0 comments on commit b5dc716

Please sign in to comment.