gen_run_utils.h 836 B

12345678910111213141516171819202122232425262728293031323334
  1. /******************************************************************************
  2. *
  3. * Copyright (C) 2021 by
  4. * The Salk Institute for Biological Studies
  5. *
  6. * Use of this source code is governed by an MIT-style
  7. * license that can be found in the LICENSE file or at
  8. * https://opensource.org/licenses/MIT.
  9. *
  10. ******************************************************************************/
  11. #ifndef API_GEN_RUN_UTILS_H
  12. #define API_GEN_RUN_UTILS_H
  13. #include "api/api_common.h"
  14. namespace MCell {
  15. namespace API {
  16. class PythonExportContext;
  17. namespace run_utils {
  18. std::string get_last_checkpoint_dir(const int seed);
  19. std::vector<std::string> remove_cwd(const std::vector<std::string> paths);
  20. } // namespace run_utils
  21. void define_pybinding_run_utils(py::module& m);
  22. } // namespace API
  23. } // namespace MCell
  24. #endif // API_GEN_RUN_UTILS_H