Refactored code to walk multiple runs

This commit is contained in:
2019-10-08 16:46:22 +02:00
parent 08be3e9af5
commit 8236069094
7 changed files with 130 additions and 78 deletions

View File

@@ -580,9 +580,14 @@ public:
void saveToFile(std::ofstream& stream){
gp.draw(splot);
#if defined(_WINDOWS)
stream << "set terminal windows size 2000,1500\n";
#elif
stream << "set terminal x11 size 2000,1500\n";
#endif
stream << gp.getBuffer();
stream << "pause -1\n";
// stream << "pause -1\n";
gp.flush();
}