We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb8ca81 commit 40cc415Copy full SHA for 40cc415
src/main/java/org/ojalgo/optimisation/convex/ConvexSolver.java
@@ -571,7 +571,8 @@ public ConvexSolver build(final ExpressionsBasedModel model) {
571
572
Boolean projection = options.convex().getProjection();
573
574
- if (nbEqus > 0 && nbInes > 0 && (Boolean.TRUE.equals(projection) || (projection == null && (nbVars >= 80) && (nbVars / nbEqus <= 2)))) {
+ if (nbEqus > 0 && nbInes > 0 && nbEqus <= nbVars
575
+ && (Boolean.TRUE.equals(projection) || (projection == null && (nbVars >= 80) && (nbVars / nbEqus <= 2)))) {
576
577
ConvexSolver solver = new NullSpaceASS(options, data);
578
0 commit comments