146146import org .assertj .core .api .junit .jupiter .SoftAssertionsExtension ;
147147import org .jspecify .annotations .NonNull ;
148148import org .jspecify .annotations .Nullable ;
149+ import org .junit .jupiter .api .Disabled ;
149150import org .junit .jupiter .api .Test ;
150151import org .junit .jupiter .api .Timeout ;
151152import org .junit .jupiter .api .extension .ExtendWith ;
@@ -1656,6 +1657,7 @@ private static List<MoveSelectorConfig> generateMovesForMultiEntity() {
16561657 return allMoveSelectionConfigList ;
16571658 }
16581659
1660+ @ Disabled ("The mixed model is currently unavailable for general use" )
16591661 @ Test
16601662 void solveMixedModel () {
16611663 // Same size for both list and basic variables
@@ -1667,6 +1669,7 @@ void solveMixedModel() {
16671669 executeSolveMixedModel (3 , 2 , 2 );
16681670 }
16691671
1672+ @ Disabled ("The mixed model is currently unavailable for general use" )
16701673 @ Test
16711674 void solveMultiEntityMixedModel () {
16721675 // Same size for both list and basic variables
@@ -1749,6 +1752,7 @@ void executeSolveMultiEntityMixedModel(int entitySize, int valueSize, int otherV
17491752 }
17501753 }
17511754
1755+ @ Disabled ("The mixed model is currently unavailable for general use" )
17521756 @ Test
17531757 void solveMixedModelCustomMove () {
17541758 var solverConfig = PlannerTestUtils .buildSolverConfig (
@@ -1773,6 +1777,7 @@ void solveMixedModelCustomMove() {
17731777 .isEmpty ();
17741778 }
17751779
1780+ @ Disabled ("The mixed model is currently unavailable for general use" )
17761781 @ Test
17771782 void solveMixedModelCustomPhase () {
17781783 var solverConfig = PlannerTestUtils .buildSolverConfig (
@@ -1805,6 +1810,7 @@ private static List<Pair<EntitySorterManner, ValueSorterManner>> getSortMannerLi
18051810 return sortMannerList ;
18061811 }
18071812
1813+ @ Disabled ("The mixed model is currently unavailable for general use" )
18081814 @ ParameterizedTest
18091815 @ MethodSource ("getSortMannerList" )
18101816 void solveMixedModelWithSortManner (Pair <EntitySorterManner , ValueSorterManner > sorterManner ) {
@@ -1838,6 +1844,7 @@ void solveMixedModelWithSortManner(Pair<EntitySorterManner, ValueSorterManner> s
18381844 .isEmpty ();
18391845 }
18401846
1847+ @ Disabled ("The mixed model is currently unavailable for general use" )
18411848 @ Test
18421849 void solvePinnedMixedModel () {
18431850 // We don't enable the LS because we want to ensure the pinned entity remains uninitialized
@@ -1861,6 +1868,7 @@ void solvePinnedMixedModel() {
18611868 assertThat (solution .getEntityList ().get (0 ).getValueList ()).isEmpty ();
18621869 }
18631870
1871+ @ Disabled ("The mixed model is currently unavailable for general use" )
18641872 @ Test
18651873 void solveUnassignedMixedModel () {
18661874 var solverConfig = PlannerTestUtils .buildSolverConfig (
@@ -1887,6 +1895,7 @@ void solveUnassignedMixedModel() {
18871895 .hasSize (2 );
18881896 }
18891897
1898+ @ Disabled ("The mixed model is currently unavailable for general use" )
18901899 @ Test
18911900 void solvePinnedAndUnassignedMixedModel () {
18921901 var solverConfig = PlannerTestUtils .buildSolverConfig (
@@ -1974,6 +1983,7 @@ private static List<MoveSelectorConfig> generateMovesForMixedModel() {
19741983 return allMoveSelectionConfigList ;
19751984 }
19761985
1986+ @ Disabled ("The mixed model is currently unavailable for general use" )
19771987 @ ParameterizedTest
19781988 @ MethodSource ("generateMovesForMixedModel" )
19791989 void solveMoveConfigMixedModel (MoveSelectorConfig moveSelectionConfig ) {
@@ -2036,6 +2046,7 @@ private static List<MoveSelectorConfig> generateMovesForMultiEntityMixedModel()
20362046 return allMoveSelectionConfigList ;
20372047 }
20382048
2049+ @ Disabled ("The mixed model is currently unavailable for general use" )
20392050 @ ParameterizedTest
20402051 @ MethodSource ("generateMovesForMultiEntityMixedModel" )
20412052 void solveMultiEntityMoveConfigMixedModel (MoveSelectorConfig moveSelectionConfig ) {
0 commit comments