I'm wondering if there's a name/reference for the variant of knapsack problem where all items have the same value (so we only care about maximizing the number of items), but there are multiple weight constraints.
Maximize $\sum_{j=1}^nx_j$
subject to $\sum_{j=1}^nw_{ij}x_j\leq W_i$ for $1\leq i\leq m$
and $x_i=0,1$.
This is a special case of multidimensional knapsack. I've looked at the list of knapsack problems, but the only one with uniform value is not multidimensional but instead wants the sum of weights to be exactly $W$. Is there some reference for the version I described?