From e686d4957bc9db2efd1023d97393eedd9cfcd24c Mon Sep 17 00:00:00 2001 From: eugenefischer <66030419+eugenefischer@users.noreply.github.com> Date: Wed, 9 Apr 2025 11:20:52 -0500 Subject: [PATCH] disable selection of the scaling integer weight MWM algorithm via the interactive interface --- src/main/java/InteractiveInterface.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/InteractiveInterface.java b/src/main/java/InteractiveInterface.java index a0f28fb..57f1358 100644 --- a/src/main/java/InteractiveInterface.java +++ b/src/main/java/InteractiveInterface.java @@ -607,8 +607,9 @@ public class InteractiveInterface { System.out.println("MWM algorithm set to auction"); } case 4 -> { - BiGpairSEQ.setIntegerWeightScalingAlgorithm(); - System.out.println("MWM algorithm set to integer weight scaling algorithm of Duan and Su"); + System.out.println("Scaling integer weight MWM algorithm not yet fully implemented. Sorry."); +// BiGpairSEQ.setIntegerWeightScalingAlgorithm(); +// System.out.println("MWM algorithm set to integer weight scaling algorithm of Duan and Su"); backToOptions = true; } case 0 -> backToOptions = true;