Skip to content

Commit

Permalink
Update Equation.java
Browse files Browse the repository at this point in the history
  • Loading branch information
apete committed Feb 15, 2024
1 parent 5fd6e90 commit 958c728
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/main/java/org/ojalgo/equation/Equation.java
Original file line number Diff line number Diff line change
Expand Up @@ -126,14 +126,6 @@ public static Equation wrap(final BasicArray<?> body, final int pivot, final dou
private double myPivot = ZERO;
private double myRHS;

/**
* @deprecated v49 Use one of the factory methods instead
*/
@Deprecated
public Equation(final int row, final long numberOfColumns, final double rhs) {
this(SparseArray.factory(ArrayR064.FACTORY).make(numberOfColumns), row, rhs);
}

Equation(final BasicArray<?> body, final int pivot, final double rhs) {

super();
Expand Down

0 comments on commit 958c728

Please sign in to comment.