Skip to content

Commit

Permalink
Remove const from double _s in scores.h
Browse files Browse the repository at this point in the history
The variable _s is used in function void set_score(double s) { _s = s; }
  • Loading branch information
Atom194 committed Jan 16, 2025
1 parent e08efbc commit 38eafe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libtreeler/treeler/base/scores.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ namespace treeler {
template <typename X, typename R>
class ConstantScores : public BaseScores<ConstantScores<X,R>> {
private:
const double _s;
double _s;
bool _random;
public:

Expand Down

0 comments on commit 38eafe5

Please sign in to comment.