Skip to content

Commit

Permalink
Safe master for tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Oct 23, 2016
1 parent 700780d commit 0f6830a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,3 @@ InplaceOps 0.0.5
NLsolve 0.7.3
Sundials 0.3.0
Ranges 0.0.1
ParameterizedFunctions 0.1.0
2 changes: 1 addition & 1 deletion src/DifferentialEquations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module DifferentialEquations

using IterativeSolvers, Parameters, Plots, GenericSVD, ForwardDiff,
ChunkedArrays, InplaceOps, Sundials, ParameterizedFunctions, Ranges
ChunkedArrays, InplaceOps, Sundials, Ranges
import Base: length, size, getindex, endof, show, print, max, linspace
import Plots: plot
import ForwardDiff.Dual
Expand Down
4 changes: 2 additions & 2 deletions src/ode/ode_integrators.jl
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ end
local iter::Int = 0
local saveiter::Int = 1 # Starts at 1 so first save is at 2
local T::tType
const parameterized = typeof(f)<:ParameterizedFunction
const calc_senstivity = parameterized && !isempty(sensitivity_params)
#const parameterized = typeof(f)<:ParameterizedFunction
const calc_senstivity = !isempty(sensitivity_params) # parameterized &&
if calc_senstivity
vecu = vec(u)
sensitivity_J = Matrix{uEltype}(length(vecu),length(vecu))
Expand Down

0 comments on commit 0f6830a

Please sign in to comment.