From 369ef1708177ca18c49df8cc4dae4b555a91b054 Mon Sep 17 00:00:00 2001 From: evomarc Date: Thu, 12 Apr 2001 05:35:05 +0000 Subject: [PATCH] Modified the default behavior of eoCountedStateSaver to save the final population. So if you don't want any population save, don't use any eoCountedStateSaver. --- eo/src/utils/eoUpdater.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo/src/utils/eoUpdater.h b/eo/src/utils/eoUpdater.h index 32b800db..593c6aa4 100644 --- a/eo/src/utils/eoUpdater.h +++ b/eo/src/utils/eoUpdater.h @@ -95,7 +95,7 @@ public : eoCountedStateSaver(unsigned _interval, const eoState& _state, std::string _prefix = "state", std::string _extension = "sav") : state(_state), interval(_interval), counter(0), - saveOnLastCall(false), + saveOnLastCall(true), prefix(_prefix), extension(_extension) {} virtual void lastCall(void);