Skip to content

Commit

Permalink
Merge pull request #426 from pmpowers-usgs/grid-smoothing-default-on
Browse files Browse the repository at this point in the history
grid source rate smoothing on
  • Loading branch information
pmpowers-usgs committed May 28, 2019
2 parents bf1b8d4 + eaef9e5 commit 9556830
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gov/usgs/earthquake/nshmp/calc/CalcConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -1036,7 +1036,7 @@ public static final class Performance {
/**
* Whether to distribute grid sources near a site to smooth event rates.
*
* <p><b>Default:</b> {@code false}
* <p><b>Default:</b> {@code true}
*/
public final boolean smoothGrids;

Expand Down Expand Up @@ -1134,7 +1134,7 @@ void extend(Builder that) {
static Builder defaults() {
Builder b = new Builder();
b.optimizeGrids = true;
b.smoothGrids = false;
b.smoothGrids = true;
b.collapseMfds = true;
b.systemPartition = 1000;
b.threadCount = ThreadCount.ALL;
Expand Down

0 comments on commit 9556830

Please sign in to comment.