File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
src/main/java/adaa/analytics/rules/logic/induction Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ codeQuality {
27
27
}
28
28
29
29
sourceCompatibility = 1.8
30
- version = ' 1.7.17 '
30
+ version = ' 1.7.18 '
31
31
32
32
33
33
jar {
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ public int grow(
181
181
182
182
if (params .getMaxGrowingConditions () > 0 ) {
183
183
if (rule .getPremise ().getSubconditions ().size () - initialConditionsCount >=
184
- params .getMaxGrowingConditions () * dataset . getAttributes (). size () ) {
184
+ params .getMaxGrowingConditions ()) {
185
185
carryOn = false ;
186
186
}
187
187
}
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ public int grow(
178
178
179
179
if (params .getMaxGrowingConditions () > 0 ) {
180
180
if (rule .getPremise ().getSubconditions ().size () - initialConditionsCount >=
181
- params .getMaxGrowingConditions () * dataset . getAttributes (). size () ) {
181
+ params .getMaxGrowingConditions ()) {
182
182
carryOn = false ;
183
183
}
184
184
}
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ public int grow(
181
181
182
182
if (params .getMaxGrowingConditions () > 0 ) {
183
183
if (currentRule .getPremise ().getSubconditions ().size () - initialConditionsCount >=
184
- params .getMaxGrowingConditions () * dataset . getAttributes (). size () ) {
184
+ params .getMaxGrowingConditions ()) {
185
185
carryOn = false ;
186
186
}
187
187
}
You can’t perform that action at this time.
0 commit comments