I have a problem in the following type:
$$\sum_{i∈I}{\max_{j∈J}c_{ij}\cdot x_{j}}$$
For each objective, in a set of $x$ variables, the goal is to select the one with the highest cost coefficient. After obtaining their objective values, we sum them up. Is there any simple way to write this in CPLEX? In minimax or maximax adding a dummy variable would be the way but it does not work in this case as we sum the objectives of multiple problems. However, defining $i$ many problems, solving them seperately and summing their values would be too time consuming. Is there any fast way to do this?