Home
last modified time | relevance | path

Searched refs:m_nic (Results 1 – 5 of 5) sorted by relevance

/dports/science/pagmo2/pagmo2-2.18.0/src/problems/
H A Dnull_problem.cpp44 : m_nobj(nobj), m_nec(nec), m_nic(nic), m_nix(nix) in null_problem()
76 detail::archive(ar, m_nobj, m_nec, m_nic, m_nix); in serialize()
/dports/science/pagmo2/pagmo2-2.18.0/include/pagmo/problems/
H A Dnull_problem.hpp85 return m_nic; in get_nic()
112 vector_double::size_type m_nic; member
/dports/science/pagmo2/pagmo2-2.18.0/src/
H A Dproblem.cpp182 m_nic = ptr()->get_nic(); in generic_ctor_impl()
183 if (m_nic > std::numeric_limits<vector_double::size_type>::max() / 3u) { in generic_ctor_impl()
237 m_c_tol.resize(m_nec + m_nic); in generic_ctor_impl()
256 …m_nobj(other.m_nobj), m_nec(other.m_nec), m_nic(other.m_nic), m_nix(other.m_nix), m_c_tol(other.m_… in problem()
272 …m_ub(std::move(other.m_ub)), m_nobj(other.m_nobj), m_nec(other.m_nec), m_nic(other.m_nic), m_nix(o… in problem()
298 m_nic = other.m_nic; in operator =()
/dports/science/pagmo2/pagmo2-2.18.0/include/pagmo/
H A Dproblem.hpp1354 return m_nobj + m_nic + m_nec; in get_nf()
1401 return m_nic; in get_nic()
1428 return m_nec + m_nic; in get_nc()
1608 … m_ub, m_nobj, m_nec, m_nic, m_nix, m_c_tol, m_has_batch_fitness, m_has_gradient, in save()
1618 …::from_archive(ar, m_ptr, fevals, gevals, hevals, m_lb, m_ub, m_nobj, m_nec, m_nic, m_nix, m_c_tol, in load()
1666 vector_double::size_type m_nic; member in pagmo::problem
/dports/science/pagmo2/pagmo2-2.18.0/tests/
H A Dproblem.cpp61 : m_nobj(nobj), m_nec(nec), m_nic(nic), m_ret_fit(ret_fit), m_lb(lb), m_ub(ub)
79 return m_nic; in get_nic()
98 detail::archive(ar, m_nobj, m_nec, m_nic, m_ret_fit, m_lb, m_ub); in serialize()
103 vector_double::size_type m_nic; member
522 BOOST_CHECK(user_problem->m_nic == 2); in BOOST_AUTO_TEST_CASE()
751 BOOST_CHECK_EQUAL(p.extract<full_p>()->m_nic, p2.extract<full_p>()->m_nic); in BOOST_AUTO_TEST_CASE()