Skip to content

Commit

Permalink
remove unnecessary type casts.
Browse files Browse the repository at this point in the history
  • Loading branch information
pluskid committed Jul 7, 2012
1 parent f3e3c70 commit 658757d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/shogun/multiclass/ShareBoost.cpp
Expand Up @@ -85,8 +85,7 @@ bool CShareBoost::train_machine(CFeatures* data)
float64_t t_optimize = timer->cur_time_diff();

SG_SPRINT(" SB[round %03d]: (%8.4f + %8.4f) sec.\n", t,
float64_t(t_compute_pred + t_choose_feature),
float64_t(t_optimize));
t_compute_pred + t_choose_feature, t_optimize);

timer->start();
compute_pred();
Expand Down

0 comments on commit 658757d

Please sign in to comment.