vector<unsigned long> hypercache::parentConfigs;
ostream* hypercache::log;
vector<configcache*> hypercache::Os;
+int hypercache::NEQUI;
+int hypercache::NSKIP;
+int hypercache::nequileft;
void hypercache::initCache(configcache **cache,
const string& cacheid, const int& nequi, const int& nskip, const string& datadir,
for (vector<para>::iterator parit=delayedParaSet.begin(); parit != delayedParaSet.end(); ++parit)
(*cache)->setPara(parit->parid, parit->val);
+
+ NEQUI = nequi;
+ NSKIP = nskip;
}
void hypercache::addPara(const string& parid, const double& val) {
for (vector<configcache*>::iterator osit = Os.begin(); osit != Os.end(); ++osit)
(*osit)->setPara(parid, val);
+
+ nequileft = NEQUI;
}
void hypercache::finalize() {
return dressedfile.substr(dressedfile.find_last_of("\\/")+1);
}
-void hypercache::readC(bool& readnewconfig, int& nequileft) {
- C->readConfig(readnewconfig, nequileft, &parentConfigs);
+bool hypercache::readC() {
+ bool readnewconfig_nonex;
+ int nequileftReadConfig_nonex;
+ bool readAtLeastOneConfig = false;
+
+ C->readConfig(readnewconfig_nonex, nequileftReadConfig_nonex, &parentConfigs);
+
+ if (readnewconfig_nonex) {
+ cout << ":" << nequileftReadConfig_nonex << endl;
+ nequileft = nequileftReadConfig_nonex;
+ readAtLeastOneConfig = true;
+ }
- if ( nequileft < 0 )
+ if ( nequileft < 0 && readnewconfig_nonex )
activeCFile = fileOfPath(C->getInFileName());
else
activeCFile = "";
+
+ /* try to find more equilibrated config-file configuration for equilibration in excluded files */
+ if ( nequileft > 0 && C->inFilesLeft() > 0 ) {
+ *log << "HYPERCACHE: Trying to find more equilibrated config in excluded files." << endl << flush;
+
+ char *tmpconfig = (char*) malloc(C->getConfigSize());
+
+ while (true) {
+ bool readnewconfig_ex;
+ int nequileftReadConfig_ex;
+
+ memcpy (tmpconfig, C->getConfigMem(), C->getConfigSize());
+ C->readConfig(readnewconfig_ex, nequileftReadConfig_ex, NULL);
+
+ if (! readnewconfig_ex) {
+ *log << "HYPERCACHE: No more excluded config-files for possible equilibration available." << endl << flush;
+ break;
+ }
+
+ if (nequileftReadConfig_ex <= nequileft) {
+ *log << "HYPERCACHE: Found more equilibrated or same equilibrated excluded config-file configuration for equilibration." << endl << flush;
+ nequileft = nequileftReadConfig_ex;
+ readAtLeastOneConfig = true;
+ }
+ else if (nequileftReadConfig_ex > nequileft) {
+ *log << "HYPERCACHE: Excluded config-file configuration for equilibration is less equilibrated than actual config." << endl << flush;
+ memcpy (C->getConfigMem(), tmpconfig, C->getConfigSize());
+ }
+ }
+ free(tmpconfig);
+ }
+
+ return readAtLeastOneConfig;
}
-void hypercache::writeC(int actnequi) {
- C->writeConfig(actnequi);
+void hypercache::writeC() {
+ if (nequileft > 0)
+ nequileft = 0;
+
+ nequileft -= NSKIP;
+
+ C->writeConfig(NEQUI-nequileft-NSKIP);
activeCFile = fileOfPath( C->getOutFileName().substr( 0, C->getOutFileName().length()-4 ) );
}