Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
remove unused variables j and tmp from Isomap to fix warning
  • Loading branch information
Soeren Sonnenburg committed Jan 30, 2012
1 parent 2443b79 commit 67ea574
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/shogun/converter/Isomap.cpp
Expand Up @@ -118,8 +118,7 @@ SGMatrix<float64_t> CIsomap::process_distance_matrix(SGMatrix<float64_t> distanc

SGMatrix<float64_t> CIsomap::isomap_distance(SGMatrix<float64_t> D_matrix)
{
int32_t N,t,i,j;
float64_t tmp;
int32_t N,t,i;
N = D_matrix.num_cols;
if (D_matrix.num_cols!=D_matrix.num_rows)
{
Expand Down

0 comments on commit 67ea574

Please sign in to comment.