Skip to content

Commit

Permalink
renamed variable to distinction
Browse files Browse the repository at this point in the history
  • Loading branch information
zaibod committed Nov 25, 2024
1 parent 96c082c commit 35647f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/edu/kit/provideq/toolbox/meta/Problem.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,11 @@ public void estimateBound() {

long start = System.currentTimeMillis();

var bound = estimator.apply(this.input);
var estimatedBound = estimator.apply(this.input);
long finish = System.currentTimeMillis();
var executionTime = finish - start;

this.bound = new BoundWithInfo(bound, executionTime);
this.bound = new BoundWithInfo(estimatedBound, executionTime);
}

public UUID getId() {
Expand Down

0 comments on commit 35647f5

Please sign in to comment.