Skip to content

Commit

Permalink
add parameters to tag framework
Browse files Browse the repository at this point in the history
  • Loading branch information
karlnapf committed Apr 15, 2018
1 parent cf911a1 commit d747ae8
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/shogun/features/CombinedFeatures.cpp
Expand Up @@ -166,10 +166,8 @@ int32_t CCombinedFeatures::get_num_feature_obj()

void CCombinedFeatures::init()
{
m_parameters->add(&num_vec, "num_vec",
"Number of vectors.");
m_parameters->add((CSGObject**) &feature_array,
"feature_array", "Feature array.");
SG_ADD(&num_vec, "num_vec", "Number of vectors.", MS_NOT_AVAILABLE);
SG_ADD(&feature_array, "array", "Feature array.", MS_NOT_AVAILABLE);
}

CFeatures* CCombinedFeatures::create_merged_copy(CFeatures* other)
Expand Down

0 comments on commit d747ae8

Please sign in to comment.