Skip to content

Commit

Permalink
oboe
Browse files Browse the repository at this point in the history
  • Loading branch information
krivard committed Sep 13, 2016
1 parent a663553 commit 7061176
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/java/main/edu/cmu/ml/proppr/prove/DprProver.java
Expand Up @@ -68,7 +68,7 @@ public Prover<StateProofGraph> copy() {

public void configure(String param) {
if (param.startsWith("maxTreeDepth=")) {
this.maxTreeDepth = Integer.parseInt(param.substring(param.indexOf('=')));
this.maxTreeDepth = Integer.parseInt(param.substring(param.indexOf('=')+1));
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/java/main/edu/cmu/ml/proppr/prove/IdDprProver.java
Expand Up @@ -68,7 +68,7 @@ public Prover<CachingIdProofGraph> copy() {

public void configure(String param) {
if (param.startsWith("maxTreeDepth=")) {
this.maxTreeDepth = Integer.parseInt(param.substring(param.indexOf('=')));
this.maxTreeDepth = Integer.parseInt(param.substring(param.indexOf('=')+1));
}
}

Expand Down

0 comments on commit 7061176

Please sign in to comment.