From 0b94646870828ce5c06ff5dd73860b68f8a2e160 Mon Sep 17 00:00:00 2001 From: Ted Ralphs Date: Thu, 20 Jul 2023 09:48:09 -0400 Subject: [PATCH] Fixing small bug --- src/AlpsKnowledgeBroker.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/AlpsKnowledgeBroker.h b/src/AlpsKnowledgeBroker.h index e4420465..47c446c3 100644 --- a/src/AlpsKnowledgeBroker.h +++ b/src/AlpsKnowledgeBroker.h @@ -268,7 +268,8 @@ class ALPSLIB_EXPORT AlpsKnowledgeBroker { /** Do some initialization for search. */ virtual void initializeSearch(int argc, char* argv[], - AlpsModel& model) = 0; + AlpsModel& model, + bool showBanner = true) = 0; /** Explore the tree rooted as the given root. */ virtual void rootSearch(AlpsTreeNode* root) = 0;