Skip to content

Commit 8939550

Browse files
committed
chore: address comments
1 parent 4060816 commit 8939550

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

benchmark/src/main/resources/benchmark.xsd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@
674674
<xs:element minOccurs="0" name="valueSorterManner" type="tns:valueSorterManner"/>
675675

676676

677-
<xs:choice maxOccurs="unbounded" minOccurs="0">
677+
<xs:choice minOccurs="0">
678678

679679

680680
<xs:element name="queuedEntityPlacer" type="tns:queuedEntityPlacerConfig"/>

core/src/main/java/ai/timefold/solver/core/impl/domain/solution/descriptor/SolutionDescriptor.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,7 @@ public static <Solution_> SolutionDescriptor<Solution_> buildSolutionDescriptor(
168168
}
169169
// Temporally disabling the mixed model
170170
if (solutionDescriptor.hasBothBasicAndListVariables()) {
171-
throw new IllegalStateException(
172-
"The mixed model is currently unavailable for general use. Please modify the model to utilize either a list variable or only basic variables.");
171+
throw new IllegalStateException("Combining list variable and basic variables is currently not supported.");
173172
}
174173
return solutionDescriptor;
175174
}

0 commit comments

Comments
 (0)