/* Copyright 2017-2021 PaGMO development team This file is part of the PaGMO library. The PaGMO library is free software; you can redistribute it and/or modify it under the terms of either: * the GNU Lesser General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. or * 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. or both in parallel, as here. The PaGMO library 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 copies of the GNU General Public License and the GNU Lesser General Public License along with the PaGMO library. If not, see https://www.gnu.org/licenses/. */ #ifndef PAGMO_ISLANDS_THREAD_ISLAND_HPP #define PAGMO_ISLANDS_THREAD_ISLAND_HPP #include #include #include #include namespace pagmo { // Thread island. class PAGMO_DLL_PUBLIC thread_island { public: // Default ctor. thread_island(); // Ctor with use_pool flag. explicit thread_island(bool); // Island's name. std::string get_name() const; // Extra info. std::string get_extra_info() const; // run_evolve implementation. void run_evolve(island &) const; private: // Object serialization friend class boost::serialization::access; template void save(Archive &, unsigned) const; template void load(Archive &, unsigned); BOOST_SERIALIZATION_SPLIT_MEMBER() bool m_use_pool; }; } // namespace pagmo PAGMO_S11N_ISLAND_EXPORT_KEY(pagmo::thread_island) // NOTE: version 1 added the m_use_pool flag. BOOST_CLASS_VERSION(pagmo::thread_island, 1) #endif