-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSymPyPythonCallSymbolicUtilsExt.jl
52 lines (42 loc) · 2.64 KB
/
SymPyPythonCallSymbolicUtilsExt.jl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
module SymPyPythonCallSymbolicUtilsExt
import SymPyPythonCall
import SymbolicUtils
#==
Check if x represents an expression tree. If returns true, it will be assumed that operation(::T) and arguments(::T) methods are defined. Definining these three should allow use of SymbolicUtils.simplify on custom types. Optionally symtype(x) can be defined to return the expected type of the symbolic expression.
==#
function SymbolicUtils.istree(x::SymPyPythonCall.SymbolicObject)
!(convert(Bool, x.is_Atom))
end
#==
f x is a term as defined by istree(x), exprhead(x) must return a symbol, corresponding to the head of the Expr most similar to the term x. If x represents a function call, for example, the exprhead is :call. If x represents an indexing operation, such as arr[i], then exprhead is :ref. Note that exprhead is different from operation and both functions should be defined correctly in order to let other packages provide code generation and pattern matching features.
function TermInterface.exprhead(x::SymPyPythonCall.SymbolicObject)
:call # this is not right
end
==#
#==
Returns the head (a function object) performed by an expression tree. Called only if istree(::T) is true. Part of the API required for simplify to work. Other required methods are arguments and istree
==#
function SymbolicUtils.operation(x::SymPyPythonCall.SymbolicObject)
@assert SymbolicUtils.istree(x)
nm = Symbol(SymPyPythonCall.Introspection.funcname(x))
λ = get(SymPyPythonCall.Introspection.funcname2function, nm, nothing)
if isnothing(λ)
return getfield(Main, nm)
else
return λ
end
end
#==
Returns the arguments (a Vector) for an expression tree. Called only if istree(x) is true. Part of the API required for simplify to work. Other required methods are operation and istree
==#
function SymbolicUtils.arguments(x::SymPyPythonCall.SymbolicObject)
collect(SymPyPythonCall.Introspection.args(x))
end
#==
Construct a new term with the operation f and arguments args, the term should be similar to t in type. if t is a SymbolicUtils.Term object a new Term is created with the same symtype as t. If not, the result is computed as f(args...). Defining this method for your term type will reduce any performance loss in performing f(args...) (esp. the splatting, and redundant type computation). T is the symtype of the output term. You can use SymbolicUtils.promote_symtype to infer this type. The exprhead keyword argument is useful when creating Exprs.
==#
function SymbolicUtils.similarterm(t::SymPyPythonCall.SymbolicObject, f, args, symtype=nothing;
metadata=nothing, exprhead=:call)
f(args...) # default
end
end