Skip to content

Commit ef0f79e

Browse files
committed
use this->options_
1 parent 23585b5 commit ef0f79e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/aligator/core/linesearch-nonmonotone.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ NonmonotoneLinesearch<T>::NonmonotoneLinesearch(const Options &options)
3838

3939
template <typename T>
4040
T NonmonotoneLinesearch<T>::run(fun_t f, T phi0, T dphi0, T &a_opt) {
41-
const Options &opts = this->options();
41+
const Options &opts = this->options_;
4242
mov_avg = avg_eta * avg_weight * mov_avg + phi0;
4343
avg_weight = avg_eta * avg_weight + 1;
4444
mov_avg /= avg_weight;

0 commit comments

Comments
 (0)