Skip to content

Commit

Permalink
removed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
gaperez64 committed Oct 16, 2024
1 parent dfdef84 commit 42c1cbf
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/calculus.jl
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,6 @@ evaluated at the vector `vals`. If `vals` is omitted, it is evaluated at zero.
"""
function jacobian(vf::Array{TaylorN{T},1}) where {T<:Number}
numVars = get_numvars()
# @assert length(vf) == numVars
jac = Array{T}(undef, numVars, length(vf))

@inbounds for comp = 1:length(vf)
Expand Down Expand Up @@ -294,7 +293,6 @@ it is evaluated at zero.
"""
function jacobian!(jac::Array{T,2}, vf::Array{TaylorN{T},1}) where {T<:Number}
numVars = get_numvars()
# @assert length(vf) == numVars
@assert (length(vf), numVars) == size(jac)
for comp2 = 1:numVars
for comp1 = 1:length(vf)
Expand Down

0 comments on commit 42c1cbf

Please sign in to comment.