Home | History | Annotate | Download | only in linear

Lines Matching defs:setEntry

163             matrix.setEntry(0, 0, -1);
166 matrix.setEntry(zIndex, zIndex, maximize ? 1 : -1);
170 matrix.setEntry(zIndex, width - 1,
174 matrix.setEntry(zIndex, getSlackVariableOffset() - 1,
190 matrix.setEntry(row, getSlackVariableOffset() - 1,
195 matrix.setEntry(row, width - 1, constraint.getValue());
199 matrix.setEntry(row, getSlackVariableOffset() + slackVar++, 1); // slack
201 matrix.setEntry(row, getSlackVariableOffset() + slackVar++, -1); // excess
207 matrix.setEntry(0, getArtificialVariableOffset() + artificialVar, 1);
208 matrix.setEntry(row, getArtificialVariableOffset() + artificialVar++, 1);
407 tableau.setEntry(dividendRow, j, tableau.getEntry(dividendRow, j) / divisor);
457 protected final void setEntry(final int row, final int column,
459 tableau.setEntry(row, column, value);