Home
last modified time | relevance | path

Searched refs:n_orig_ (Results 1 – 4 of 4) sorted by relevance

/dports/science/dakota/dakota-6.13.0-release-public.src-UI/src/inactive/
H A DrSQPOptimizer.C62 ,n_orig_(0) in NLPDakota()
110 n_orig_ = model_->cv(); in initialize()
138 Gc_orig_nz_ = n_orig_ * m_orig_; in initialize()
139 Gh_orig_nz_ = n_orig_ * mI_orig_; in initialize()
142 dakota_x_.reshape(n_orig_); in initialize()
189 return n_orig_; in imp_n_orig()
476 if(calc_Gf && Gf->dim() > n_orig_ ) in imp_calc_point()
487 for( int i = 0; i < n_orig_; ++i ) { in imp_calc_point()
513 for( int i = 0; i < n_orig_; ++i ) { in imp_calc_point()
604 for( int i = 1; i <= n_orig_; ++i ) { in imp_calc_point()
[all …]
H A DrSQPOptimizer.H200 size_type n_orig_; variable
/dports/math/bonmin/Bonmin-releases-1.8.8/Bonmin/src/Interfaces/
H A DBonCutStrengthener.cpp320 n_orig_(n), in StrengtheningTNLP()
327 starting_point_ = new Number[n_orig_]; in StrengtheningTNLP()
328 x_full_ = new Number[n_orig_]; in StrengtheningTNLP()
329 IpBlasDcopy(n_orig_, starting_point, 1, starting_point_, 1); in StrengtheningTNLP()
330 IpBlasDcopy(n_orig_, starting_point, 1, x_full_, 1); in StrengtheningTNLP()
381 grad_f_ = new Number[n_orig_]; in StrengtheningTNLP()
414 if (n_orig_ != n_orig) { in get_nlp_info()
431 Number* x_l_orig = new Number[n_orig_]; in get_bounds_info()
432 Number* x_u_orig = new Number[n_orig_]; in get_bounds_info()
436 if (!tminlp_->get_bounds_info(n_orig_, x_l_orig, x_u_orig, in get_bounds_info()
[all …]
H A DBonCutStrengthener.hpp126 const Ipopt::Index n_orig_; member in Bonmin::CutStrengthener::StrengtheningTNLP