Home
last modified time | relevance | path

Searched refs:l_bnds (Results 1 – 7 of 7) sorted by relevance

/dports/science/dakota/dakota-6.13.0-release-public.src-UI/src/
H A DNOWPACOptimizer.hpp54 void set_unscaled_bounds(const RealVector& l_bnds, const RealVector& u_bnds);
121 set_unscaled_bounds(const RealVector& l_bnds, const RealVector& u_bnds) in set_unscaled_bounds() argument
122 { copy_data(l_bnds, lowerBounds); copy_data(u_bnds, upperBounds); } in set_unscaled_bounds()
H A DNOWPACOptimizer.cpp147 RealArray l_bnds, u_bnds; size_t num_v = iteratedModel.cv(); in initialize_options() local
148 l_bnds.assign(num_v, -1.); u_bnds.assign(num_v, 1.); in initialize_options()
149 nowpacSolver.set_lower_bounds(l_bnds); in initialize_options()
H A DDakotaModel.cpp450 bool l_bnds = !n_l_bnds.empty(), u_bnds = !n_u_bnds.empty(); in initialize_distribution() local
451 if (!l_bnds && !u_bnds) // won't happen: parser -> +/-inf in initialize_distribution()
455 rv_types[start_rv+i] = ( ( l_bnds && n_l_bnds[i] > -dbl_inf ) || in initialize_distribution()
467 bool l_bnds = !ln_l_bnds.empty(), u_bnds = !ln_u_bnds.empty(); in initialize_distribution() local
468 if (!l_bnds && !u_bnds) // won't happen: parser -> 0/inf in initialize_distribution()
472 rv_types[start_rv+i] = ( ( l_bnds && ln_l_bnds[i] > 0. ) || in initialize_distribution()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/pecos/src/
H A DMarginalsCorrDistribution.hpp130 void lower_bounds(const RealVector& l_bnds,
133 void lower_bounds(const IntVector& l_bnds,
820 lower_bounds(const RealVector& l_bnds, const BitArray& mask) in lower_bounds() argument
822 check_active_length(l_bnds, mask); in lower_bounds()
826 randomVars[v].lower_bound(l_bnds[v]); in lower_bounds()
831 randomVars[v].lower_bound(l_bnds[av_cntr++]); in lower_bounds()
837 lower_bounds(const IntVector& l_bnds, const BitArray& mask) in lower_bounds() argument
839 check_active_length(l_bnds, mask); in lower_bounds()
843 randomVars[v].lower_bound(l_bnds[v]); in lower_bounds()
848 randomVars[v].lower_bound(l_bnds[av_cntr++]); in lower_bounds()
H A DMultivariateDistribution.cpp405 lower_bounds(const RealVector& l_bnds, const BitArray& mask) in lower_bounds() argument
408 mvDistRep->lower_bounds(l_bnds, mask); in lower_bounds()
418 lower_bounds(const IntVector& l_bnds, const BitArray& mask) in lower_bounds() argument
421 mvDistRep->lower_bounds(l_bnds, mask); in lower_bounds()
H A DMultivariateDistribution.hpp106 virtual void lower_bounds(const RealVector& l_bnds,
109 virtual void lower_bounds(const IntVector& l_bnds,
H A DLHSDriver.hpp311 bool l_bnds = !n_l_bnds.empty(), u_bnds = !n_u_bnds.empty(), l_bnd, u_bnd; in generate_normal_samples() local
314 l_bnd = (l_bnds && n_l_bnds[i] > -dbl_inf); in generate_normal_samples()