Skip to content

Commit 48ec678

Browse files
authored
Remove Compat (#76)
* Change Discretes to use ReactiveBasics * Remove Compat
1 parent 48f771f commit 48ec678

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

REQUIRE

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
julia 0.5
2-
Compat
32
Documenter
43
Ipopt
54
JuMP

src/Sims.jl

-3
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ export foldp, value, signal, flatmap
4444
using Documenter
4545
include("docutil.jl")
4646

47-
using Compat
48-
import Compat.view
49-
5047
include("main.jl")
5148
include("elaboration.jl")
5249
include("simcreation.jl")

src/dassl.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ function dasslrootfun(neq, t_in, y_in, yp_in, nrt, rval_out, rpar, ipar)
4949
return nothing
5050
end
5151

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

5454
"""
5555
The solver that uses DASKR, a variant of DASSL.

0 commit comments

Comments
 (0)