Skip to content

Commit

Permalink
Synced with updated daoc having milder validation on Release
Browse files Browse the repository at this point in the history
  • Loading branch information
luav committed Oct 9, 2017
1 parent 2c475fc commit a3956bf
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
Binary file modified lib/daoc.jar
Binary file not shown.
Binary file modified lib/libdaoc.so
Binary file not shown.
2 changes: 1 addition & 1 deletion src/info/exascale/statix/Statix.java
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ public void loadDataset(String n3DataSet, boolean filteringOn, String idMapFName
final int imed = props.size()/2;
final double power = 0.786; // 0.618 = 1/rgolden; Range: 0.6 - 0.9; 0.786 = sqrt(1/rgolden)
long tailOcr = props.subList(imed, props.size()).stream().mapToLong(p
-> Math.round(Math.pow(p.occurrences, power))).sum(); // 0.618 - golden ratio
-> Math.round(Math.pow(p.occurrences, power))).sum();
final int eheadMax = (int)Math.round(Math.sqrt(props.size())) + 1;
int iehead = 0; // End index of the head
long headOcr = 0;
Expand Down

0 comments on commit a3956bf

Please sign in to comment.