gen_bngl_utils.h 888 B

123456789101112131415161718192021222324252627282930313233
  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_BNGL_UTILS_H
  12. #define API_GEN_BNGL_UTILS_H
  13. #include "api/api_common.h"
  14. namespace MCell {
  15. namespace API {
  16. class PythonExportContext;
  17. namespace bngl_utils {
  18. std::map<std::string, double> load_bngl_parameters(const std::string& file_name, const std::map<std::string, double>& parameter_overrides = std::map<std::string, double>());
  19. } // namespace bngl_utils
  20. void define_pybinding_bngl_utils(py::module& m);
  21. } // namespace API
  22. } // namespace MCell
  23. #endif // API_GEN_BNGL_UTILS_H