Skip to content
Util.hpp 228 B
Newer Older
#pragma once

#include <cstddef>
#include <string>
struct Size {
	std::size_t Cols{};
	std::size_t Rows{};
};

struct Coord {
	std::size_t X{};
	std::size_t Y{};
};

[[noreturn]] void MpiReportErrorAbort(const std::string& err);