Skip to content

Commit

Permalink
reduce max iterations
Browse files Browse the repository at this point in the history
  • Loading branch information
asad committed Dec 25, 2014
1 parent 10821fb commit eaead50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/openscience/smsd/tools/IterationManager.java
Expand Up @@ -54,7 +54,7 @@ public IterationManager() {
*/
public IterationManager(int maxIteration) {
this.counter = 0;
this.coverage = 500;
this.coverage = 250;
this.max = maxIteration;
this.limit = this.max * this.coverage;
}
Expand Down

0 comments on commit eaead50

Please sign in to comment.