19#ifdef DEAL_II_WITH_SYMENGINE
26# include <symengine/real_double.h>
34 namespace SE = ::SymEngine;
52 return Expression(symbol, arguments);
87 if (SE::is_a<SE::Symbol>(entry))
95 if (SE::is_a<SE::FunctionSymbol>(entry))
101 if (SE::is_a<SE::Derivative>(entry))
108 if (SE::is_a<SE::Mul>(entry))
110 const SE::Mul &entry_mul = SE::down_cast<const SE::Mul &>(entry);
112 if (SE::eq(*(entry_mul.get_coef()), *SE::real_double(0.5)))
116 const SE::map_basic_basic &entry_mul_dict =
117 entry_mul.get_dict();
118 if (entry_mul_dict.size() == 1 &&
119 SE::is_a<SE::Derivative>(*(entry_mul_dict.begin()->first)))
131 const SymEngine::RCP<const SymEngine::Basic> &symbol,
132 const SymEngine::RCP<const SymEngine::Basic> &value)
137 "Substitution with a number that does not represent a symbol or symbolic derivative"));
141 ExcMessage(
"Did not find this symbol in the map."));
143 it_sym->second = Expression(value);
151 const Expression & symbol,
152 const Expression & value)
164 for (
const auto &entry : symbol_values)
178 return substitution_map;
191 for (
const auto &entry : symb_map_in)
193 const typename types::substitution_map::const_iterator it_other =
194 symb_map_out.find(entry.first);
195 if (it_other == symb_map_out.end())
196 symb_map_out.insert(std::make_pair(entry.first, entry.second));
199 Assert(SE::eq(*(entry.second.get_RCP()),
200 *(it_other->second.get_RCP())),
201 ExcMessage(
"Key already in map, but values don't match"));
212 const bool force_cyclic_dependency_resolution)
215 const std::size_t size = symbol_values.size();
217 for (
auto &entry : symbol_values_resolved)
224 Expression & out = entry.second;
226 SE::hash_t hash_new = out.get_RCP()->hash();
227 unsigned int iter = 0;
232 if (force_cyclic_dependency_resolution)
239 out = out.substitute(symbol_values_resolved);
243 out = out.substitute(symbol_values);
248 hash_new = out.get_RCP()->hash();
252 "Unresolvable cyclic dependency detected in substitution map."));
255 while (hash_new != hash_old);
258 return symbol_values_resolved;
266 return expression.
substitute(substitution_map);
Expression substitute(const types::substitution_map &substitution_values) const
Expression differentiate(const Expression &symbol) const
#define DEAL_II_NAMESPACE_OPEN
#define DEAL_II_NAMESPACE_CLOSE
#define Assert(cond, exc)
static ::ExceptionBase & ExcMessage(std::string arg1)
#define AssertThrow(cond, exc)
SD::types::symbol_vector extract_symbols(const SD::types::substitution_map &substitution_values)
bool is_valid_substitution_symbol(const SymEngine::Basic &entry)
void set_value_in_symbol_map(types::substitution_map &substitution_map, const SymEngine::RCP< const SymEngine::Basic > &symbol, const SymEngine::RCP< const SymEngine::Basic > &value)
std::vector< SD::Expression > symbol_vector
std::map< SD::Expression, SD::Expression, internal::ExpressionKeyLess > substitution_map
void merge_substitution_maps(types::substitution_map &substitution_map_out, const types::substitution_map &substitution_map_in)
Expression differentiate(const Expression &f, const Expression &x)
Expression make_symbolic_function(const std::string &symbol, const types::symbol_vector &arguments)
void set_value_in_symbol_map(types::substitution_map &substitution_map, const Expression &symbol, const Expression &value)
void add_to_substitution_map(types::substitution_map &substitution_map, const Expression &symbol, const Expression &value)
types::substitution_map resolve_explicit_dependencies(const types::substitution_map &substitution_map, const bool force_cyclic_dependency_resolution=false)
Expression substitute(const Expression &expression, const types::substitution_map &substitution_map)
types::substitution_map make_substitution_map(const Expression &symbol, const Expression &value)
Expression make_symbol(const std::string &symbol)