eostdoutmonitor.cpp

来自「这是linux下的进化计算的源代码。 === === === === ==」· C++ 代码 · 共 56 行

CPP
56
字号
#ifdef _MSC_VER// to avoid long name warnings#pragma warning(disable:4786)#endif #include <iostream>#include <fstream>#include <stdexcept>#include <utils/eoStdoutMonitor.h>#include <utils/compatibility.h>#include <utils/eoParam.h>using namespace std;eoMonitor& eoStdoutMonitor::operator()(void){    if (!cout)    {        string str = "eoStdoutMonitor: Could not write to cout";        throw runtime_error(str);    }    if (firsttime)    {      if (verbose)        cout << "First Generation" << endl;      else	{	  for(iterator it = vec.begin(); it != vec.end(); ++it)	    {	      cout << (*it)->longName() << delim;	    }	  cout << endl;	}        firsttime = false;    }    // ok, now the real saving. write out    if (verbose)      {      for(iterator it = vec.begin(); it != vec.end(); ++it)	{	  cout << (*it)->longName() << ": " << (*it)->getValue() << '\n';	}      cout << "\n****** End of Generation ******\n" << endl;      }    else			// a one-liner      {	for(iterator it = vec.begin(); it != vec.end(); ++it)	  {	    cout << (*it)->getValue() << delim;	  }	cout << endl;      }    return *this;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?