In Pyomo, how can I get a list of the variables appearing in a constraint?
I combed through the code in Github, but could not a find any suitable method or attribute fo
I found the answer myself: model.con1.body._args gets you the desired list.
model.con1.body._args