Skip to content

Commit

Permalink
Remove Compat (#76)
Browse files Browse the repository at this point in the history

* Change Discretes to use ReactiveBasics

* Remove Compat
  • Loading branch information
tshort authored Dec 23, 2016
1 parent 48f771f commit 48ec678
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
julia 0.5
Compat
Documenter
Ipopt
JuMP
Expand Down
3 changes: 0 additions & 3 deletions src/Sims.jl
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ export foldp, value, signal, flatmap
using Documenter
include("docutil.jl")

using Compat
import Compat.view

include("main.jl")
include("elaboration.jl")
include("simcreation.jl")
Expand Down
2 changes: 1 addition & 1 deletion src/dassl.jl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function dasslrootfun(neq, t_in, y_in, yp_in, nrt, rval_out, rpar, ipar)
return nothing
end

initdassl = @compat Dict(:none => 0, :Ya_Ydp => 1, :Y => 2)
initdassl = Dict(:none => 0, :Ya_Ydp => 1, :Y => 2)

"""
The solver that uses DASKR, a variant of DASSL.
Expand Down

0 comments on commit 48ec678

Please sign in to comment.