Open
Description
In proximal.h
, static analysis flags that out
can be declared as a reference to const
.
void operator()(Vector<T> &out, typename real_type<T>::type, Vector<T> const &x) const {
return operator()(out, x);
}
RelativeVariation &tolerance(Real &e) const {
tolerance_ = e;
return *this;
}
Parameter e
can be declared as reference to const
.
Any thoughts on these?
Activity