parser.h
1 #ifndef SYMENGINE_PARSER_H
2 #define SYMENGINE_PARSER_H
3 
4 #include <symengine/basic.h>
5 
6 namespace SymEngine
7 {
8 
9 RCP<const Basic>
10 parse(const std::string &s, bool convert_xor = true,
11  const std::map<const std::string, const RCP<const Basic>> &constants
12  = {});
13 RCP<const Basic> parse_old(const std::string &s, bool convert_xor = true);
14 RCP<const Basic>
15 parse_sbml(const std::string &s,
16  const std::map<const std::string, const RCP<const Basic>> &constants
17  = {});
18 } // namespace SymEngine
19 
20 #endif
The base class for SymEngine.
Main namespace for SymEngine package.
Definition: add.cpp:19