I am having troubles trying to apply multiple constraints to my design variables. To reproduce my case :
create a problem with 4 variables, 2 objectives and 2 constraints
create a constraint.py file with constraints x1 - x2 and x1 - x3
try to generate samples (5 in my example), an error pop :
I think the problem comes from the evaluate_feasible() in problem.py, more specifically this call to pymoo when G contains multiple constraint evaluations :
Hi !
I am having troubles trying to apply multiple constraints to my design variables. To reproduce my case :
I think the problem comes from the evaluate_feasible() in problem.py, more specifically this call to pymoo when G contains multiple constraint evaluations :
Problem.calc_constraint_violation(np.column_stack(np.atleast_2d(G))).
If you need more informations please tell me.