Question about a.any() and a.all() in the _evaluate method #206
-
Hello, I have a following piece of code within my very long _evaluate method , which has many formulas, one of which is as follows,
here only thm, P are a single valued floats, whereas, others, i.e Nr, zeta, Ga, and Dpf eventually are all My question is if I run a separate file of my all the formulas that I have now kept inside the _evaluate method, I do not require to give Would this affect the result in anyway, or rather is there a way I could run all the formulas of the _evaluate method, like I would have run in a separate file, i.e. without using |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
pymoo does not really care how you obtain the |
Beta Was this translation helpful? Give feedback.
pymoo does not really care how you obtain the
F
andG
values, as long as you set them correctly to theout
array.You can even call third-party software, run your evaluation on a cluster, and so on. As long as you set them to
out
when you have obtained all values.