2020-02-21 15:10:07 +00:00
|
|
|
/*
|
|
|
|
This file is part of solidity.
|
|
|
|
|
|
|
|
solidity is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
solidity is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <tools/yulPhaser/AlgorithmRunner.h>
|
|
|
|
|
2020-02-22 00:39:33 +00:00
|
|
|
#include <tools/yulPhaser/Exceptions.h>
|
|
|
|
|
|
|
|
#include <libsolutil/Assertions.h>
|
|
|
|
|
|
|
|
#include <cerrno>
|
|
|
|
#include <cstring>
|
|
|
|
#include <fstream>
|
|
|
|
|
2020-02-21 15:10:07 +00:00
|
|
|
using namespace std;
|
|
|
|
using namespace solidity::phaser;
|
|
|
|
|
2020-02-21 18:46:18 +00:00
|
|
|
void AlgorithmRunner::run(GeneticAlgorithm& _algorithm)
|
2020-02-21 15:10:07 +00:00
|
|
|
{
|
2020-02-22 00:39:33 +00:00
|
|
|
populationAutosave();
|
|
|
|
|
2020-02-21 18:46:18 +00:00
|
|
|
for (size_t round = 0; !m_options.maxRounds.has_value() || round < m_options.maxRounds.value(); ++round)
|
2020-02-21 15:10:07 +00:00
|
|
|
{
|
|
|
|
m_population = _algorithm.runNextRound(m_population);
|
|
|
|
|
2020-02-26 23:44:36 +00:00
|
|
|
m_outputStream << "---------- ROUND " << round + 1 << " ----------" << endl;
|
2020-02-21 15:10:07 +00:00
|
|
|
m_outputStream << m_population;
|
2020-02-22 00:39:33 +00:00
|
|
|
|
|
|
|
populationAutosave();
|
2020-02-21 15:10:07 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-22 00:39:33 +00:00
|
|
|
|
|
|
|
void AlgorithmRunner::populationAutosave() const
|
|
|
|
{
|
|
|
|
if (!m_options.populationAutosaveFile.has_value())
|
|
|
|
return;
|
|
|
|
|
|
|
|
ofstream outputStream(m_options.populationAutosaveFile.value(), ios::out | ios::trunc);
|
|
|
|
assertThrow(
|
|
|
|
outputStream.is_open(),
|
|
|
|
FileOpenError,
|
|
|
|
"Could not open file '" + m_options.populationAutosaveFile.value() + "': " + strerror(errno)
|
|
|
|
);
|
|
|
|
|
|
|
|
for (auto& individual: m_population.individuals())
|
|
|
|
outputStream << individual.chromosome << endl;
|
|
|
|
|
|
|
|
assertThrow(
|
|
|
|
!outputStream.bad(),
|
|
|
|
FileWriteError,
|
|
|
|
"Error while writing to file '" + m_options.populationAutosaveFile.value() + "': " + strerror(errno)
|
|
|
|
);
|
|
|
|
}
|