- Timestamp:
- 01/28/20 10:19:54 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
profile/src/main/java/geniusweb/profile/utilityspace/SumOfGroupsUtilitySpace.java
r9 r10 84 84 * grouping. 85 85 * 86 * @param las the {@link LinearAdditive UtilitySpace} to be converted/copied.87 * 88 */ 89 public SumOfGroupsUtilitySpace(LinearAdditive UtilitySpacelas) {86 * @param las the {@link LinearAdditive} to be converted/copied. 87 * 88 */ 89 public SumOfGroupsUtilitySpace(LinearAdditive las) { 90 90 this(las.getDomain(), las.getName(), las2parts(las), 91 91 las.getReservationBid()); … … 212 212 /** 213 213 * 214 * @param las a {@link LinearAdditive UtilitySpace}214 * @param las a {@link LinearAdditive} 215 215 * @return a Map with partname-PartsUtilities. The partnames are identical 216 216 * to the issues in the given las. 217 217 */ 218 218 private static HashMap<String, PartsUtilities> las2parts( 219 LinearAdditive UtilitySpacelas) {219 LinearAdditive las) { 220 220 221 221 HashMap<String, PartsUtilities> map = new HashMap<>();
Note:
See TracChangeset
for help on using the changeset viewer.