Skip to content

Commit

Permalink
removed superfluous print statements from test & updated build.yaml t…
Browse files Browse the repository at this point in the history
…o have a unique reporting directory for each matrix build
  • Loading branch information
jakobrehmann committed Dec 11, 2024
1 parent 356d860 commit 1e571c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Archive reports
uses: actions/upload-artifact@v4
with:
name: maven-site
name: maven-site-{{ matrix.java }}-${{ matrix.module }}
path: target/site/

env:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ public void testNordstroemEtAl() {
antibodyLevelsAvg = new Int2ObjectAVLTreeMap<>(antibodyLevels) ;
antibodyLevelsAvg.forEach((k, v) -> v.forEach((k2, v2) -> antibodyLevels.get(k).put(k2, v2 / popSize)));

System.out.println("");
// System.out.println("");
} else {
for (int day : antibodyLevels.keySet()) {
Object2DoubleMap<VirusStrain> dayLevelAvg = antibodyLevelsAvg.get(day);
Expand Down Expand Up @@ -1516,7 +1516,7 @@ private Int2ObjectMap<Object2DoubleMap<VirusStrain>> simulateAntibodyLevels(List
throw new RuntimeException("unknown immunity event type");
}

System.out.println(immunityEvent + " on day " + day);
// System.out.println(immunityEvent + " on day " + day);


model.updateAntibodies(person, day);
Expand Down

0 comments on commit 1e571c1

Please sign in to comment.