! Align inequality and equality constraints vertically. Given an inequality constraint ineq(x, p) and equality constraint eq(x, p). The method that is returned evaluates the following array. [ ineq(x, p) ] v(x, p) = [ eq(x, p) ] [ -eq(x, p) ]
(
x: CasADiArrayType,
p: CasADiArrayType,
ineq: List[cs.Function] = [],
eq: List[cs.Function] = [],
)