Home
last modified time | relevance | path

Searched refs:evaluate_objective (Results 1 – 19 of 19) sorted by relevance

/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/contrib/pynumero/algorithms/solvers/tests/
H A Dtest_cyipopt_solver.py154 self.assertAlmostEqual(nlp.evaluate_objective(), -428.6362455416348, places=5)
203 self.assertAlmostEqual(nlp.evaluate_objective(), -31.000000057167462, places=5)
221 self.assertAlmostEqual(nlp.evaluate_objective(), -3.5, places=5)
230 self.assertAlmostEqual(nlp.evaluate_objective(), -5.0879028e+02, places=5)
/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/contrib/pynumero/examples/
H A Dnlp_interface.py39 f = nlp.evaluate_objective()
/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/contrib/pynumero/interfaces/tests/
H A Dtest_external_asl_function.py42 self.assertAlmostEqual(nlp.evaluate_objective(), 2, 7)
H A Dtest_pyomo_grey_box_nlp.py115 f = egb_nlp.evaluate_objective()
221 f = egb_nlp.evaluate_objective()
329 f = egb_nlp.evaluate_objective()
441 f = egb_nlp.evaluate_objective()
564 f = egb_nlp.evaluate_objective()
806 f = pyomo_nlp.evaluate_objective()
912 f = pyomo_nlp.evaluate_objective()
1021 f = pyomo_nlp.evaluate_objective()
1130 f = pyomo_nlp.evaluate_objective()
1247 f = pyomo_nlp.evaluate_objective()
[all …]
H A Dtest_external_grey_box_model.py583 f = pyomo_nlp.evaluate_objective()
693 f = pyomo_nlp.evaluate_objective()
806 f = pyomo_nlp.evaluate_objective()
919 f = pyomo_nlp.evaluate_objective()
1040 f = pyomo_nlp.evaluate_objective()
1177 f = pyomo_nlp.evaluate_objective()
H A Dtest_dynamic_model.py455 m_obj = m_nlp.evaluate_objective()
456 mex_obj = mex_nlp.evaluate_objective()
H A Dtest_nlp.py198 self.assertEqual(expected_objective, anlp.evaluate_objective())
202 self.assertEqual(expected_objective, anlp.evaluate_objective())
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/snowpac/include/
H A DGaussianProcessSupport.hpp70 double evaluate_objective ( BlackBoxData const& );
/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/contrib/pynumero/interfaces/
H A Dnlp_projections.py89 def evaluate_objective(self): member in _BaseNLPDelegator
90 return self._original_nlp.evaluate_objective()
H A Dnlp.py284 def evaluate_objective(self): member in NLP
H A Dpyomo_grey_box_nlp.py327 def evaluate_objective(self): member in PyomoNLPWithGreyBoxBlocks
329 return self._pyomo_nlp.evaluate_objective()
648 def evaluate_objective(self): member in _ExternalGreyBoxAsNLP
H A Dpyomo_nlp.py838 def evaluate_objective(self): member in PyomoGreyBoxNLP
840 return self._pyomo_nlp.evaluate_objective()
H A Dampl_nlp.py462 def evaluate_objective(self): member in AslNLP
/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/contrib/interior_point/
H A Dinterface.py57 def evaluate_objective(self): member in BaseInteriorPointInterface
530 def evaluate_objective(self): member in InteriorPointInterface
531 return self._nlp.evaluate_objective()
H A Dinterior_point.py261 objective = interface.evaluate_objective()
/dports/science/py-GPyOpt/GPyOpt-1.2.6/GPyOpt/core/
H A Dbo.py151 self.evaluate_objective()
193 def evaluate_objective(self): member in BO
/dports/math/py-Pyomo/Pyomo-6.1.2/pyomo/contrib/pynumero/algorithms/solvers/
H A Dpyomo_ext_cyipopt.py312 return self._pyomo_nlp.evaluate_objective()
H A Dcyipopt_solver.py333 return self._nlp.evaluate_objective()
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/snowpac/src/
H A DGaussianProcessSupport.cpp775 double GaussianProcessSupport::evaluate_objective ( BlackBoxData const &evaluations) in evaluate_objective() function in GaussianProcessSupport