Skip to content

Commit

Permalink
+ Iterationsabbruch nach vorn verlegt, da letzte gespeicherte Werte n…
Browse files Browse the repository at this point in the history
…icht notwendig
  • Loading branch information
AndiMb committed Jun 20, 2024
1 parent f65ef8c commit 22d9f2a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,10 @@ public static CLT_LastPlyFailureResult determineValuesLastPlyFailure(CLT_Laminat
lastIteration = true;
}
}

if (lastIteration) {
break;
}

layerResultList.add(layerResults);
boolean[] zfw_failTemp = new boolean[numLayers];
Expand All @@ -379,10 +383,6 @@ public static CLT_LastPlyFailureResult determineValuesLastPlyFailure(CLT_Laminat
rf_minList.add(rf_min.getMinimalReserveFactor() * j_A_set);
FailureTypeList.add(rf_min.getFailureName());

if (lastIteration) {
break;
}

clt_lam.getCLTLayers()[minLayerIndex].refresh();
clt_lam.refresh();
}
Expand Down

0 comments on commit 22d9f2a

Please sign in to comment.