Skip to content

Commit

Permalink
update call to Calculus.differentiate (simplify by default was disabl…
Browse files Browse the repository at this point in the history
…ed) (#22)
  • Loading branch information
mlubin authored and ahojukka5 committed May 24, 2018
1 parent 99b2b0d commit 5c70195
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/create_basis.jl
Expand Up @@ -93,7 +93,7 @@ function calculate_interpolation_polynomial_derivatives(basis, dim)
deq = []
for k=1:dim
#println("∂($(basis[j])) / ∂$(vars[k])")
der = differentiate(basis[j], vars[k])
der = simplify(differentiate(basis[j], vars[k]))
push!(deq, der)
end
push!(equations, deq)
Expand Down

0 comments on commit 5c70195

Please sign in to comment.