From d8e64b538cf8795938f670eaa3aae9431cb84710 Mon Sep 17 00:00:00 2001 From: Thomas Wong Date: Wed, 12 Jun 2024 18:30:26 +1000 Subject: [PATCH] Revert the fix for the issue happened when performing ModelFinder on Q-Mixtures with same number of classes. --- model/modelmixture.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/model/modelmixture.cpp b/model/modelmixture.cpp index e762a747b..5a7008a35 100644 --- a/model/modelmixture.cpp +++ b/model/modelmixture.cpp @@ -1595,7 +1595,8 @@ void ModelMixture::setCheckpoint(Checkpoint *checkpoint) { } void ModelMixture::startCheckpoint() { - checkpoint->startStruct("ModelMixture" + convertIntToString(getNMixtures()) + "_" + getName()); + checkpoint->startStruct("ModelMixture" + convertIntToString(getNMixtures())); + // checkpoint->startStruct("ModelMixture" + convertIntToString(getNMixtures()) + "_" + getName()); } void ModelMixture::saveCheckpoint() {