For someone with zero experience, this can be very confusing.
How do I define the Set Packing problem as seen in the wikipedia article as a MathProg program, to be later ran in the GLPK tool?
Intution alone would lead me into something like this:
var x
maximize SetPacking :
sum {s in Subsets} x
s.t. ?? //x is an integer 0 or 1
s.t. ?? //amount of x <=1
end;
But its logic is obviously wrong and I can't even finish it.