Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: upgrade to SymbolicUtils w/ fast terms #720

Merged
merged 27 commits into from
Jan 12, 2021
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
2b6317c
updates for Add Mul Pow
shashi Jan 6, 2021
f8279d8
.op -> operation; .args -> arguments
shashi Jan 6, 2021
39506eb
Fix calculate_tgrad
YingboMa Jan 6, 2021
ba22d8e
Add `TermCombination` overloads
YingboMa Jan 6, 2021
f358076
Fix vars
YingboMa Jan 6, 2021
b8370a4
Fix first order transform
YingboMa Jan 6, 2021
9db1674
Update mass matrix test
YingboMa Jan 6, 2021
9b7c580
fix diff tests
shashi Jan 6, 2021
3fc1e28
fix toexpr
shashi Jan 6, 2021
addfdf6
Fix a typo
YingboMa Jan 6, 2021
f15696a
Use istree in `diff2term`
YingboMa Jan 7, 2021
a9f3a99
fix pow on termcombination and use similarterm to avoid defining <_e
shashi Jan 8, 2021
aa4e3e2
Merge remote-tracking branch 'origin/s/addmulpow' into s/addmulpow
shashi Jan 8, 2021
388691a
fix typo
shashi Jan 8, 2021
896fdb7
approx couple of tests
shashi Jan 8, 2021
39b057f
pass only RHS in generate_affect_function
shashi Jan 8, 2021
0d70c3b
Fix https://github.com/SciML/ModelingToolkit.jl/issues/609
YingboMa Jan 8, 2021
b2a5f9d
Fix LaTeX printing
YingboMa Jan 8, 2021
828d461
some more genericness
shashi Jan 9, 2021
4a6e57a
Add canonicalexpr to generate safe expressions for evaluations
YingboMa Jan 9, 2021
27c923c
fix more
shashi Jan 9, 2021
d50d987
more fixes
shashi Jan 9, 2021
bd22a92
Update build_targets tests
YingboMa Jan 8, 2021
ad372b0
bump Symutils
shashi Jan 9, 2021
0f9baea
Fix latexify test
YingboMa Jan 11, 2021
4473574
Add `canonicalize` kw and fix latexify tests
YingboMa Jan 11, 2021
8f430f9
Comment out Latexify tests
YingboMa Jan 12, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/systems/jumps/jumpsystem.jl
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function generate_rate_function(js, rate)
end

function generate_affect_function(js, affect, outputidxs)
build_function(affect, states(js),
bf = build_function(map(x->x isa Equation ? x.rhs : x , affect), states(js),
isaacsas marked this conversation as resolved.
Show resolved Hide resolved
parameters(js),
conv = states_to_sym(states(js)),
independent_variable(js),
Expand Down