Skip to content
main.cpp 1.3 KiB
Newer Older
#include <cassert>
#include <chrono>
#include <cstdlib>
#include <fstream>
#include <iostream>
#include <string>
#include <thread>
#include <vector>

#include "Configuration.hpp"
#include "MpiEnvironment.hpp"
#include "MpiWireworld.hpp"
#include "WireWorld.hpp"

using namespace std::string_literals;

int main(int argc, char* argv[]) {
	static constexpr auto DebugRank = 0;
Thomas Steinreiter's avatar
Thomas Steinreiter committed
	const auto& starttime = std::chrono::system_clock::now();

	MpiEnvironment env(argc, argv);
	const auto& cfg = Configuration::parseArgs(argc, argv, env);
	MpiWireworld ww(env, cfg);
	//const auto clear = []() {
	//	auto err = std::system("clear");
	//	(void)err;
	//};
	// if (env.worldRank() == DebugRank) clear();
	// if (env.worldRank() == DebugRank) std::cout << ww << '\n';
	for (std::size_t i{0}; i < cfg.Generations; ++i) {
		using namespace std::chrono_literals;
		// std::this_thread::sleep_for(.5s);
		// if (env.worldRank() == DebugRank) clear();
		// if (env.worldRank() == DebugRank) std::cout << ww << '\n';
	if (!cfg.OutputFilePath.empty()) { ww.write(); }
	if (env.isMaster()) {
		std::cout
		    << "Execution time:"
		    << std::chrono::duration<double>{std::chrono::system_clock::now() -
		                                     starttime}
		           .count()
		    << "s\n";
	}
	return EXIT_SUCCESS;