#include "IpRestoMinC_1Nrm.hpp"
#include "IpCompoundVector.hpp"
#include "IpRestoIpoptNLP.hpp"
#include "IpDefaultIterateInitializer.hpp"
namespace Ipopt
{
#if IPOPT_VERBOSITY > 0
static const Index dbg_verbosity = 0;
#endif
MinC_1NrmRestorationPhase::MinC_1NrmRestorationPhase(
IpoptAlgorithm& resto_alg,
const SmartPtr<EqMultiplierCalculator>& eq_mult_calculator
)
: resto_alg_(&resto_alg),
eq_mult_calculator_(eq_mult_calculator),
resto_options_(NULL)
{
DBG_ASSERT(IsValid(resto_alg_));
}
MinC_1NrmRestorationPhase::~MinC_1NrmRestorationPhase()
{ }
void MinC_1NrmRestorationPhase::RegisterOptions(
SmartPtr<RegisteredOptions> roptions
)
{
roptions->AddLowerBoundedNumberOption(
"bound_mult_reset_threshold",
"Threshold for resetting bound multipliers after the restoration phase.",
0., false,
1e3,
"After returning from the restoration phase, the bound multipliers are updated with a Newton step for complementarity. "
"Here, the change in the primal variables during the entire restoration phase is taken to be the corresponding primal Newton step. "
"However, if after the update the largest bound multiplier exceeds the threshold specified by this option, "
"the multipliers are all reset to 1.");
roptions->AddLowerBoundedNumberOption(
"constr_mult_reset_threshold",
"Threshold for resetting equality and inequality multipliers after restoration phase.",
0., false,
0.,
"After returning from the restoration phase, the constraint multipliers are recomputed by a least square estimate. "
"This option triggers when those least-square estimates should be ignored.");
roptions->AddLowerBoundedNumberOption(
"resto_failure_feasibility_threshold",
"Threshold for primal infeasibility to declare failure of restoration phase.",
0., false,
0.,
"If the restoration phase is terminated because of the \"acceptable\" termination criteria and "
"the primal infeasibility is smaller than this value, the restoration phase is declared to have failed. "
"The default value is actually 1e2*tol, where tol is the general termination tolerance.",
true);
}
bool MinC_1NrmRestorationPhase::InitializeImpl(
const OptionsList& options,
const std::string& prefix
)
{
resto_options_ = new OptionsList(options);
options.GetNumericValue("constr_mult_reset_threshold", constr_mult_reset_threshold_, prefix);
options.GetNumericValue("bound_mult_reset_threshold", bound_mult_reset_threshold_, prefix);
options.GetBoolValue("expect_infeasible_problem", expect_infeasible_problem_, prefix);
options.GetNumericValue("constr_viol_tol", constr_viol_tol_, prefix);
options.GetNumericValue("max_wall_time", max_wall_time_, prefix);
options.GetNumericValue("max_cpu_time", max_cpu_time_, prefix);
resto_options_->SetStringValue("resto.start_with_resto", "no");
Number theta_max_fact;
if( !options.GetNumericValue("resto.theta_max_fact", theta_max_fact, "") )
{
resto_options_->SetNumericValue("resto.theta_max_fact", 1e8);
}
if( !options.GetNumericValue("resto_failure_feasibility_threshold", resto_failure_feasibility_threshold_, prefix) )
{
resto_failure_feasibility_threshold_ = 1e2 * IpData().tol();
}
count_restorations_ = 0;
bool retvalue = true;
if( IsValid(eq_mult_calculator_) )
{
retvalue = eq_mult_calculator_->Initialize(Jnlst(), IpNLP(), IpData(), IpCq(), options, prefix);
}
return retvalue;
}
bool MinC_1NrmRestorationPhase::PerformRestoration()
{
DBG_START_METH("MinC_1NrmRestorationPhase::PerformRestoration",
dbg_verbosity);
count_restorations_++;
Jnlst().Printf(J_DETAILED, J_MAIN,
"Starting Restoration Phase for the %" IPOPT_INDEX_FORMAT ". time\n", count_restorations_);
DBG_ASSERT(IpCq().curr_constraint_violation() > 0.);
SmartPtr<IpoptData> resto_ip_data = new IpoptData(NULL);
SmartPtr<IpoptNLP> resto_ip_nlp = new RestoIpoptNLP(IpNLP(), IpData(), IpCq());
SmartPtr<IpoptCalculatedQuantities> resto_ip_cq = new IpoptCalculatedQuantities(resto_ip_nlp, resto_ip_data);
if( max_wall_time_ < 1e20 )
{
Number elapsed = WallclockTime() - IpData().TimingStats().OverallAlgorithm().StartWallclockTime();
DBG_ASSERT(elapsed >= 0);
if( elapsed >= max_wall_time_ )
{
THROW_EXCEPTION(RESTORATION_WALLTIME_EXCEEDED, "Maximal wallclock time exceeded at start of restoration phase.");
}
resto_options_->SetNumericValue("resto.max_wall_time", max_wall_time_ - elapsed);
}
if( max_cpu_time_ < 1e20 )
{
Number elapsed = CpuTime() - IpData().TimingStats().OverallAlgorithm().StartCpuTime();
DBG_ASSERT(elapsed >= 0);
if( elapsed >= max_cpu_time_ )
{
THROW_EXCEPTION(RESTORATION_CPUTIME_EXCEEDED, "Maximal CPU time exceeded at start of restoration phase.");
}
resto_options_->SetNumericValue("resto.max_cpu_time", max_cpu_time_ - elapsed);
}
bool square_problem = IpCq().IsSquareProblem();
SmartPtr<OptionsList> actual_resto_options = resto_options_;
if( square_problem )
{
actual_resto_options = new OptionsList(*resto_options_);
actual_resto_options->SetNumericValueIfUnset("required_infeasibility_reduction", 0.);
}
else if( expect_infeasible_problem_ )
{
actual_resto_options = new OptionsList(*resto_options_);
actual_resto_options->SetStringValueIfUnset("resto.expect_infeasible_problem", "no");
if( count_restorations_ == 1 && IpCq().curr_constraint_violation() > 1e-3 )
{
actual_resto_options->SetNumericValueIfUnset("required_infeasibility_reduction", 1e-3);
}
}
resto_alg_->Initialize(Jnlst(), *resto_ip_nlp, *resto_ip_data, *resto_ip_cq, *actual_resto_options, "resto.");
resto_ip_data->Set_iter_count(IpData().iter_count() + 1);
resto_ip_data->Set_info_regu_x(IpData().info_regu_x());
resto_ip_data->Set_info_alpha_primal(IpData().info_alpha_primal());
resto_ip_data->Set_info_alpha_primal_char(IpData().info_alpha_primal_char());
resto_ip_data->Set_info_alpha_dual(IpData().info_alpha_dual());
resto_ip_data->Set_info_ls_count(IpData().info_ls_count());
resto_ip_data->Set_info_iters_since_header(IpData().info_iters_since_header());
resto_ip_data->Set_info_last_output(IpData().info_last_output());
SolverReturn resto_status = resto_alg_->Optimize(true);
int retval = -1;
if( resto_status != SUCCESS )
{
SmartPtr<const IteratesVector> resto_curr = resto_ip_data->curr();
if( IsValid(resto_curr) )
{
SmartPtr<IteratesVector> trial = IpData().trial()->MakeNewContainer();
SmartPtr<const Vector> resto_curr_x = resto_curr->x();
SmartPtr<const CompoundVector> cx = static_cast<const CompoundVector*>(GetRawPtr(resto_curr_x));
DBG_ASSERT(dynamic_cast<const CompoundVector*>(GetRawPtr(resto_curr_x)));
SmartPtr<const Vector> resto_curr_s = resto_curr->s();
SmartPtr<const CompoundVector> cs = static_cast<const CompoundVector*>(GetRawPtr(resto_curr_s));
DBG_ASSERT(dynamic_cast<const CompoundVector*>(GetRawPtr(resto_curr_s)));
SmartPtr<const Vector> resto_curr_y_c = resto_curr->y_c();
SmartPtr<const CompoundVector> cy_c = static_cast<const CompoundVector*>(GetRawPtr(resto_curr_y_c));
DBG_ASSERT(dynamic_cast<const CompoundVector*>(GetRawPtr(resto_curr_y_c)));
SmartPtr<const Vector> resto_curr_y_d = resto_curr->y_d();
SmartPtr<const CompoundVector> cy_d = static_cast<const CompoundVector*>(GetRawPtr(resto_curr_y_d));
DBG_ASSERT(dynamic_cast<const CompoundVector*>(GetRawPtr(resto_curr_y_d)));
SmartPtr<const Vector> resto_curr_z_L = resto_curr->z_L();
SmartPtr<const CompoundVector> cz_L = static_cast<const CompoundVector*>(GetRawPtr(resto_curr_z_L));
DBG_ASSERT(dynamic_cast<const CompoundVector*>(GetRawPtr(resto_curr_z_L)));
SmartPtr<const Vector> resto_curr_z_U = resto_curr->z_U();
SmartPtr<const CompoundVector> cz_U = static_cast<const CompoundVector*>(GetRawPtr(resto_curr_z_U));
DBG_ASSERT(dynamic_cast<const CompoundVector*>(GetRawPtr(resto_curr_z_U)));
SmartPtr<const Vector> resto_curr_v_L = resto_curr->v_L();
SmartPtr<const CompoundVector> cv_L = static_cast<const CompoundVector*>(GetRawPtr(resto_curr_v_L));
DBG_ASSERT(dynamic_cast<const CompoundVector*>(GetRawPtr(resto_curr_v_L)));
SmartPtr<const Vector> resto_curr_v_U = resto_curr->v_U();
SmartPtr<const CompoundVector> cv_U = static_cast<const CompoundVector*>(GetRawPtr(resto_curr_v_U));
DBG_ASSERT(dynamic_cast<const CompoundVector*>(GetRawPtr(resto_curr_v_U)));
trial->Set_primal(*cx->GetComp(0), *cs->GetComp(0));
trial->Set_eq_mult(*cy_c->GetComp(0), *cy_d->GetComp(0));
trial->Set_bound_mult(*cz_L->GetComp(0), *cz_U->GetComp(0), *cv_L->GetComp(0), *cv_U->GetComp(0));
IpData().set_trial(trial);
IpData().AcceptTrialPoint();
}
}
if( resto_status == SUCCESS )
{
if( Jnlst().ProduceOutput(J_DETAILED, J_LINE_SEARCH) )
{
Jnlst().Printf(J_DETAILED, J_LINE_SEARCH,
"\nRESTORATION PHASE RESULTS\n");
Jnlst().Printf(J_DETAILED, J_LINE_SEARCH,
"\n\nOptimal solution found! \n");
Jnlst().Printf(J_DETAILED, J_LINE_SEARCH,
"Optimal Objective Value = %.16E\n", resto_ip_cq->curr_f());
Jnlst().Printf(J_DETAILED, J_LINE_SEARCH,
"Number of Iterations = %" IPOPT_INDEX_FORMAT "\n", resto_ip_data->iter_count());
}
if( Jnlst().ProduceOutput(J_VECTOR, J_LINE_SEARCH) )
{
resto_ip_data->curr()->Print(Jnlst(), J_VECTOR, J_LINE_SEARCH, "curr");
}
retval = 0;
}
else if( square_problem && resto_status == STOP_AT_ACCEPTABLE_POINT && IpCq().unscaled_curr_nlp_constraint_violation(NORM_MAX) < constr_viol_tol_ )
{
Jnlst().Printf(J_DETAILED, J_LINE_SEARCH,
"Recursive restoration phase algorithm terminated acceptably for square problem.\n");
THROW_EXCEPTION(FEASIBILITY_PROBLEM_SOLVED,
"Restoration phase converged to sufficiently feasible point of original square problem.");
}
else if( resto_status == STOP_AT_TINY_STEP || resto_status == STOP_AT_ACCEPTABLE_POINT )
{
Number orig_primal_inf = IpCq().curr_primal_infeasibility(NORM_MAX);
if( orig_primal_inf <= resto_failure_feasibility_threshold_ )
{
Jnlst().Printf(J_WARNING, J_LINE_SEARCH,
"Restoration phase converged to a point with small primal infeasibility.\n");
THROW_EXCEPTION(RESTORATION_CONVERGED_TO_FEASIBLE_POINT,
"Restoration phase converged to a point with small primal infeasibility");
}
else
{
THROW_EXCEPTION(LOCALLY_INFEASIBLE, "Restoration phase converged to a point of local infeasibility");
}
}
else if( resto_status == MAXITER_EXCEEDED )
{
THROW_EXCEPTION(RESTORATION_MAXITER_EXCEEDED, "Maximal number of iterations exceeded in restoration phase.");
}
else if( resto_status == CPUTIME_EXCEEDED )
{
THROW_EXCEPTION(RESTORATION_CPUTIME_EXCEEDED, "Maximal CPU time exceeded in restoration phase.");
}
else if( resto_status == WALLTIME_EXCEEDED )
{
THROW_EXCEPTION(RESTORATION_WALLTIME_EXCEEDED, "Maximal wallclock time exceeded in restoration phase.");
}
else if( resto_status == LOCAL_INFEASIBILITY )
{
THROW_EXCEPTION(LOCALLY_INFEASIBLE, "Restoration phase converged to a point of local infeasibility");
}
else if( resto_status == RESTORATION_FAILURE )
{
Jnlst().Printf(J_WARNING, J_LINE_SEARCH,
"Restoration phase in the restoration phase failed.\n");
THROW_EXCEPTION(RESTORATION_FAILED, "Restoration phase in the restoration phase failed.");
}
else if( resto_status == ERROR_IN_STEP_COMPUTATION )
{
Jnlst().Printf(J_WARNING, J_LINE_SEARCH,
"Step computation in the restoration phase failed.\n");
THROW_EXCEPTION(RESTORATION_FAILED, "Step computation in the restoration phase failed.");
}
else if( resto_status == USER_REQUESTED_STOP )
{
THROW_EXCEPTION(RESTORATION_USER_STOP, "User requested stop during restoration phase");
}
else if( resto_status == INVALID_NUMBER_DETECTED )
{
Jnlst().Printf(J_STRONGWARNING, J_LINE_SEARCH,
"Restoration phase failed due to evaluation errors.\n");
retval = 1;
}
else
{
Jnlst().Printf(J_STRONGWARNING, J_LINE_SEARCH,
"Restoration phase failed with unexpected solverreturn status %d\n", (int)resto_status);
retval = 1;
}
if( retval == 0 )
{
SmartPtr<const Vector> resto_curr_x = resto_ip_data->curr()->x();
SmartPtr<const CompoundVector> cx = static_cast<const CompoundVector*>(GetRawPtr(resto_curr_x));
DBG_ASSERT(dynamic_cast<const CompoundVector*>(GetRawPtr(resto_curr_x)));
SmartPtr<const Vector> resto_curr_s = resto_ip_data->curr()->s();
SmartPtr<const CompoundVector> cs = static_cast<const CompoundVector*>(GetRawPtr(resto_curr_s));
DBG_ASSERT(dynamic_cast<const CompoundVector*>(GetRawPtr(resto_curr_s)));
SmartPtr<IteratesVector> trial = IpData().trial()->MakeNewContainer();
trial->Set_primal(*cx->GetComp(0), *cs->GetComp(0));
IpData().set_trial(trial);
if( square_problem )
{
Number constr_viol = IpCq().unscaled_curr_nlp_constraint_violation(NORM_MAX);
if( constr_viol <= constr_viol_tol_ )
{
Jnlst().Printf(J_DETAILED, J_LINE_SEARCH,
"Recursive restoration phase algorithm terminated successfully for square problem.\n");
IpData().AcceptTrialPoint();
THROW_EXCEPTION(FEASIBILITY_PROBLEM_SOLVED,
"Restoration phase converged to sufficiently feasible point of original square problem.");
}
}
SmartPtr<IteratesVector> delta = IpData().curr()->MakeNewIteratesVector(true);
delta->Set(0.0);
ComputeBoundMultiplierStep(*delta->z_L_NonConst(), *IpData().curr()->z_L(), *IpCq().curr_slack_x_L(),
*IpCq().trial_slack_x_L());
ComputeBoundMultiplierStep(*delta->z_U_NonConst(), *IpData().curr()->z_U(), *IpCq().curr_slack_x_U(),
*IpCq().trial_slack_x_U());
ComputeBoundMultiplierStep(*delta->v_L_NonConst(), *IpData().curr()->v_L(), *IpCq().curr_slack_s_L(),
*IpCq().trial_slack_s_L());
ComputeBoundMultiplierStep(*delta->v_U_NonConst(), *IpData().curr()->v_U(), *IpCq().curr_slack_s_U(),
*IpCq().trial_slack_s_U());
DBG_PRINT_VECTOR(1, "delta_z_L", *delta->z_L());
DBG_PRINT_VECTOR(1, "delta_z_U", *delta->z_U());
DBG_PRINT_VECTOR(1, "delta_v_L", *delta->v_L());
DBG_PRINT_VECTOR(1, "delta_v_U", *delta->v_U());
Number alpha_dual = IpCq().dual_frac_to_the_bound(IpData().curr_tau(), *delta->z_L_NonConst(),
*delta->z_U_NonConst(), *delta->v_L_NonConst(), *delta->v_U_NonConst());
Jnlst().Printf(J_DETAILED, J_LINE_SEARCH,
"Step size for bound multipliers: %8.2e\n", alpha_dual);
IpData().SetTrialBoundMultipliersFromStep(alpha_dual, *delta->z_L(), *delta->z_U(), *delta->v_L(), *delta->v_U());
Number bound_mult_max = Max(IpData().trial()->z_L()->Amax(), IpData().trial()->z_U()->Amax(),
IpData().trial()->v_L()->Amax(), IpData().trial()->v_U()->Amax());
if( bound_mult_max > bound_mult_reset_threshold_ )
{
trial = IpData().trial()->MakeNewContainer();
Jnlst().Printf(J_DETAILED, J_LINE_SEARCH,
"Bound multipliers after restoration phase too large (max=%8.2e). Set all to 1.\n", bound_mult_max);
trial->create_new_z_L();
trial->create_new_z_U();
trial->create_new_v_L();
trial->create_new_v_U();
trial->z_L_NonConst()->Set(1.0);
trial->z_U_NonConst()->Set(1.0);
trial->v_L_NonConst()->Set(1.0);
trial->v_U_NonConst()->Set(1.0);
IpData().set_trial(trial);
}
DefaultIterateInitializer::least_square_mults(Jnlst(), IpNLP(), IpData(), IpCq(), eq_mult_calculator_,
constr_mult_reset_threshold_);
DBG_PRINT_VECTOR(2, "y_c", *IpData().curr()->y_c());
DBG_PRINT_VECTOR(2, "y_d", *IpData().curr()->y_d());
IpData().Set_iter_count(resto_ip_data->iter_count() - 1);
IpData().Set_info_skip_output(true);
IpData().Set_info_iters_since_header(resto_ip_data->info_iters_since_header());
IpData().Set_info_last_output(resto_ip_data->info_last_output());
}
return (retval == 0);
}
void MinC_1NrmRestorationPhase::ComputeBoundMultiplierStep(
Vector& delta_z,
const Vector& curr_z,
const Vector& curr_slack,
const Vector& trial_slack
)
{
Number mu = IpData().curr_mu();
delta_z.Copy(curr_slack);
delta_z.Axpy(-1., trial_slack);
delta_z.ElementWiseMultiply(curr_z);
delta_z.AddScalar(mu);
delta_z.ElementWiseDivide(curr_slack);
delta_z.Axpy(-1., curr_z);
}
}