Skip to content

Commit b9eecbb

Browse files
committed
clarify documentation
1 parent 0fb688d commit b9eecbb

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/java/org/variantsync/boosting/datastructure/Association.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public CustomHashSet<Module> getNot() {
159159
}
160160

161161
/**
162-
* Returns a list of the smallest min modules.
162+
* Returns a list of the min modules with the least literals.
163163
*
164164
* @return The list of smallest min modules
165165
*/
@@ -168,7 +168,7 @@ public List<Module> getSmallestMinModules() {
168168
}
169169

170170
/**
171-
* Returns a list of the smallest max modules.
171+
* Returns a list of the max modules with the least literals.
172172
*
173173
* @return The list of smallest max modules
174174
*/
@@ -177,10 +177,10 @@ public List<Module> getSmallestMaxModules() {
177177
}
178178

179179
/**
180-
* Returns a list of the smallest modules from the given EccoSet of modules.
180+
* Returns a list of the modules with the least literals in the given set of modules.
181181
*
182182
* @param modules the EccoSet of modules to search for the smallest ones
183-
* @return a list of the smallest modules from the given EccoSet
183+
* @return a list of the smallest modules from the given set
184184
*/
185185
private List<Module> getSmallestModules(final CustomHashSet<Module> modules) {
186186
final List<Module> result = new LinkedList<>();

0 commit comments

Comments
 (0)