You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, I would like to congratulate the contributors of this project. It is a great work.
I would like to ask if there is a canonical way to get the value of the optimization variables for the iterations along the optimization process.
I see that the class ifopt::Problem has a member x_prev which I think it contains the data i desire. But this member is private.
My questions are:
Contains x_prev the history of the iterations?
Is there a way to get its value?
I think that a const method const std::vector<VectorXd> &GetIterations() const { return x_prev; }; will be usefull. It this solves the problem I can do a pull request.
The text was updated successfully, but these errors were encountered:
First, I would like to congratulate the contributors of this project. It is a great work.
I would like to ask if there is a canonical way to get the value of the optimization variables for the iterations along the optimization process.
I see that the class
ifopt::Problem
has a memberx_prev
which I think it contains the data i desire. But this member is private.My questions are:
x_prev
the history of the iterations?I think that a const method
const std::vector<VectorXd> &GetIterations() const { return x_prev; };
will be usefull. It this solves the problem I can do a pull request.The text was updated successfully, but these errors were encountered: