Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Warnings removal
  • Loading branch information
lisitsyn committed Apr 2, 2012
1 parent 54e89fd commit f1564b9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/shogun/base/Parameter.h
Expand Up @@ -61,7 +61,7 @@ struct TParameter
*
* @param len_y desired y length of the data
* @param len_x desired x length of the data
* @new_cont_call whether new_cont should be called, if false, only scalar
* @param new_cont_call whether new_cont should be called, if false, only scalar
* non-sgobject data will be allocated (needed for migration)
* */
void allocate_data_from_scratch(index_t len_y, index_t len_x,
Expand Down Expand Up @@ -102,7 +102,7 @@ struct TParameter
* default */
bool m_delete_data;

/* TODO */
/** TODO */
bool m_was_allocated_from_scratch;

private:
Expand Down
3 changes: 2 additions & 1 deletion src/shogun/evaluation/ClusteringAccuracy.h
Expand Up @@ -16,7 +16,8 @@
namespace shogun
{


/** @brief clustering accuracy
*/
class CClusteringAccuracy: public CClusteringEvaluation
{
public:
Expand Down
4 changes: 4 additions & 0 deletions src/shogun/mathematics/munkres.h
Expand Up @@ -29,19 +29,23 @@
namespace shogun
{

/** @brief Munkres */
class Munkres
{
public:
/** constructor */
Munkres(SGMatrix<double> &m)
:mask_matrix(m.num_rows, m.num_cols, true), matrix(m.num_rows, m.num_cols, true), ref_m(m)
{
}

/** solve */
void solve()
{
solve(ref_m);
}

/** destructor */
~Munkres()
{
mask_matrix.free_matrix();
Expand Down

0 comments on commit f1564b9

Please sign in to comment.