Skip to content

Commit

Permalink
Merge branch 'no-vec-vec'
Browse files Browse the repository at this point in the history
  • Loading branch information
gvegayon committed Oct 17, 2023
2 parents 5e37639 + 26d2ffa commit 3db7efb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion inst/include/barry/models/geese/geese-meat.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,6 @@ inline size_t Geese::nleafs() const noexcept
inline size_t Geese::nterms() const
{

INITIALIZED()
return model->nterms() + this->nfuns();

}
Expand Down
2 changes: 1 addition & 1 deletion inst/include/barry/rules-meat.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ inline std::vector<std::string> Rules<Array_Type, Data_Type>::get_names() const

std::vector< std::string > out;
out.reserve(this->size());
for (size_t i = 0u; i < out.size(); ++i)
for (size_t i = 0u; i < this->size(); ++i)
out.push_back(this->data.at(i).get_name());

return out;
Expand Down

0 comments on commit 3db7efb

Please sign in to comment.