XPRBsol Properties
The XPRBsol type exposes the following members.

Name | Description | |
---|---|---|
![]() ![]() |
size |
Get the size of the solution. Returns the number of variables assigned to a value in a solution.
![]()
XPRBprob expl1 = new XPRBprob("example1"); XPRBvar x1 = expl1.newVar("abc3", BCLconstant.XPRB_UI, 1, 100); XPRBsol sol1 = expl1.newSol(); sol1.setVar(x1,1.0); int size = sol1.size;
|
