From 54637f88c901c653c7e348f7ecf2906ee5016971 Mon Sep 17 00:00:00 2001 From: Lander Vanroye Date: Fri, 13 Dec 2024 15:00:55 +0100 Subject: [PATCH] call init bounds upon construction --- fatrop/solver/FatropAlg.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/fatrop/solver/FatropAlg.cpp b/fatrop/solver/FatropAlg.cpp index 6480eda0..01568e9e 100644 --- a/fatrop/solver/FatropAlg.cpp +++ b/fatrop/solver/FatropAlg.cpp @@ -41,6 +41,7 @@ FatropAlg::FatropAlg( initialize(); fatropnlp_->get_initial_sol_guess(fatropdata_->x_initial); fatropnlp->get_bounds(fatropdata->s_lower_orig, fatropdata->s_upper_orig); + fatropdata_ ->init_bounds(); } void FatropAlg::initialize() {