Skip to content

Commit e9080b6

Browse files
authoredFeb 17, 2025··
Fixed bugs (#304)
1 parent 20d8587 commit e9080b6

File tree

2 files changed

+12
-5
lines changed
  • opendc-simulator

2 files changed

+12
-5
lines changed
 

‎opendc-simulator/opendc-simulator-compute/src/main/java/org/opendc/simulator/compute/workload/trace/SimTraceWorkload.java

+4
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,10 @@ public long onUpdate(long now) {
124124
long remainingDuration = this.scalingPolicy.getRemainingDuration(
125125
this.cpuFreqDemand, this.newCpuFreqSupplied, this.remainingWork);
126126

127+
if (remainingDuration == 0.0) {
128+
this.remainingWork = 0.0;
129+
}
130+
127131
return now + remainingDuration;
128132
}
129133

‎opendc-simulator/opendc-simulator-flow/src/main/java/org/opendc/simulator/engine/graph/FlowDistributor.java

+8-5
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ public class FlowDistributor extends FlowNode implements FlowSupplier, FlowConsu
3939
private double currentIncomingSupply; // The current supply provided by the supplier
4040

4141
private boolean outgoingDemandUpdateNeeded = false;
42-
private final Set<Integer> updatedDemands =
43-
new HashSet<>(); // Array of consumers that updated their demand in this cycle
42+
private Set<Integer> updatedDemands = new HashSet<>(); // Array of consumers that updated their demand in this cycle
4443

4544
private boolean overloaded = false;
4645

@@ -209,14 +208,18 @@ public void removeConsumerEdge(FlowEdge consumerEdge) {
209208
other.setConsumerIndex(other.getConsumerIndex() - 1);
210209
}
211210

212-
for (int idx_other : this.updatedDemands) {
211+
HashSet newUpdatedDemands = new HashSet<>();
213212

213+
for (int idx_other : this.updatedDemands) {
214214
if (idx_other > idx) {
215-
this.updatedDemands.remove(idx_other);
216-
this.updatedDemands.add(idx_other - 1);
215+
newUpdatedDemands.add(idx_other - 1);
216+
} else {
217+
newUpdatedDemands.add(idx_other);
217218
}
218219
}
219220

221+
this.updatedDemands = newUpdatedDemands;
222+
220223
this.outgoingDemandUpdateNeeded = true;
221224
this.invalidate();
222225
}

0 commit comments

Comments
 (0)
Please sign in to comment.