Skip to content

Commit

Permalink
Update: RuntimeNarSettings: Parameter rename.
Browse files Browse the repository at this point in the history
  • Loading branch information
patham9 committed Dec 28, 2018
1 parent 279e66a commit ab62452
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/org/opennars/gui/RuntimeNarSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,11 @@ public void setDEFAULT_QUEST_DURABILITY(final double val) {
n.narParameters.DEFAULT_QUEST_DURABILITY = (float) val;
}

public double getQUALITY_RESCALED() {
return (double) n.narParameters.QUALITY_RESCALED;
public double getFORGET_QUALITY_RELATIVE() {
return (double) n.narParameters.FORGET_QUALITY_RELATIVE;
}
public void setQUALITY_RESCALED(final double val) {
n.narParameters.QUALITY_RESCALED = (float) val;
public void setFORGET_QUALITY_RELATIVE(final double val) {
n.narParameters.FORGET_QUALITY_RELATIVE = (float) val;
}

public double getREVISION_MAX_OCCURRENCE_DISTANCE() {
Expand Down

0 comments on commit ab62452

Please sign in to comment.