Skip to content

Commit 8ed084a

Browse files
minor
1 parent 4bb5dd8 commit 8ed084a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/main/java/network/aika/neuron/activation/Activation.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,12 +292,20 @@ public double getUpperBound() {
292292
return upperBound;
293293
}
294294

295+
public void setUpperBound(double ub) {
296+
upperBound = ub;
297+
}
298+
295299

296300
public double getLowerBound() {
297301
return lowerBound;
298302
}
299303

300304

305+
public void setLowerBound(double lb) {
306+
lowerBound = lb;
307+
}
308+
301309
public Double getTargetValue() {
302310
return targetValue;
303311
}

0 commit comments

Comments
 (0)