18#ifdef DEAL_II_WITH_SYMENGINE
25# include <symengine/real_double.h>
33 namespace SE = ::SymEngine;
51 return Expression(symbol, arguments);
86 if (SE::is_a<SE::Symbol>(entry))
94 if (SE::is_a<SE::FunctionSymbol>(entry))
100 if (SE::is_a<SE::Derivative>(entry))
107 if (SE::is_a<SE::Mul>(entry))
109 const SE::Mul &entry_mul = SE::down_cast<const SE::Mul &>(entry);
111 if (SE::eq(*(entry_mul.get_coef()), *SE::real_double(0.5)))
115 const SE::map_basic_basic &entry_mul_dict =
116 entry_mul.get_dict();
117 if (entry_mul_dict.size() == 1 &&
118 SE::is_a<SE::Derivative>(*(entry_mul_dict.begin()->first)))
130 const SymEngine::RCP<const SymEngine::Basic> &symbol,
131 const SymEngine::RCP<const SymEngine::Basic> &value)
136 "Substitution with a number that does not represent a symbol or symbolic derivative"));
140 ExcMessage(
"Did not find this symbol in the map."));
142 it_sym->second = Expression(value);
150 const Expression &symbol,
151 const Expression &value)
163 for (
const auto &entry : symbol_values)
177 return substitution_map;
190 for (
const auto &entry : symb_map_in)
192 const typename types::substitution_map::const_iterator it_other =
193 symb_map_out.find(entry.first);
194 if (it_other == symb_map_out.end())
195 symb_map_out.insert(std::make_pair(entry.first, entry.second));
198 Assert(SE::eq(*(entry.second.get_RCP()),
199 *(it_other->second.get_RCP())),
200 ExcMessage(
"Key already in map, but values don't match"));
211 const bool force_cyclic_dependency_resolution)
214 const std::size_t
size = symbol_values.size();
216 for (
auto &entry : symbol_values_resolved)
223 Expression &out = entry.second;
225 SE::hash_t hash_new = out.get_RCP()->hash();
226 unsigned int iter = 0;
231 if (force_cyclic_dependency_resolution)
238 out = out.substitute(symbol_values_resolved);
242 out = out.substitute(symbol_values);
247 hash_new = out.get_RCP()->hash();
251 "Unresolvable cyclic dependency detected in substitution map."));
254 while (hash_new != hash_old);
257 return symbol_values_resolved;
265 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)