Remove deep copy method
Copy constructor does the same thing
This commit is contained in:
parent
9419220186
commit
81e9a4970c
|
@ -27,16 +27,6 @@ public class Row {
|
|||
this.constant = other.constant;
|
||||
}
|
||||
|
||||
public Row deepCopy(){
|
||||
Row result = new Row();
|
||||
result.constant = this.constant;
|
||||
result.cells = new LinkedHashMap<>();
|
||||
for(Symbol s: this.cells.keySet()){
|
||||
result.cells.put(s, this.cells.get(s));
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
public double getConstant() {
|
||||
return constant;
|
||||
}
|
||||
|
|
|
@ -405,9 +405,9 @@ public class Solver {
|
|||
// Create and add the artificial variable to the tableau
|
||||
|
||||
Symbol art = new Symbol(Symbol.Type.SLACK, idTick++);
|
||||
rows.put(art, row.deepCopy());
|
||||
rows.put(art, new Row(row));
|
||||
|
||||
this.artificial = row.deepCopy();
|
||||
this.artificial = new Row(row);
|
||||
|
||||
// Optimize the artificial objective. This is successful
|
||||
// only if the artificial objective is optimized to zero.
|
||||
|
|
Loading…
Reference in New Issue