File tree Expand file tree Collapse file tree 4 files changed +10
-77
lines changed Expand file tree Collapse file tree 4 files changed +10
-77
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ SciMLStructures = "53ae85a6-f571-4167-b2af-e1d143709226"
30
30
StaticArraysCore = " 1e83bf80-4336-4d27-bf5d-d5a4f845583c"
31
31
Statistics = " 10745b16-79ce-11e8-11f9-7d13ad32a3b2"
32
32
SymbolicIndexingInterface = " 2efcf032-c050-4f8e-a9bb-153293bab1f5"
33
- Tables = " bd369af6-aec1-5ad0-b16a-f7cc5008161c"
34
33
35
34
[weakdeps ]
36
35
ChainRules = " 082447d4-558c-5d27-93f4-14fc19e9eca2"
@@ -111,6 +110,7 @@ Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
111
110
StableRNGs = " 860ef19b-820b-49d6-a774-d7a799459cd3"
112
111
StaticArrays = " 90137ffa-7385-5640-81b9-e52037218182"
113
112
StochasticDiffEq = " 789caeaf-c7a9-5a7d-9973-96adeb23e2a0"
113
+ Tables = " bd369af6-aec1-5ad0-b16a-f7cc5008161c"
114
114
Test = " 8dfed614-e22c-5e08-85e1-65c5234f0b40"
115
115
UnicodePlots = " b8865327-cd53-5732-bb35-84acbb429228"
116
116
Zygote = " e88e6eb3-aa80-5325-afca-941959d7151f"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ if isdefined(Base, :Experimental) &&
4
4
@eval Base. Experimental. @max_methods 1
5
5
end
6
6
using ConstructionBase
7
- using RecipesBase, RecursiveArrayTools, Tables
7
+ using RecipesBase, RecursiveArrayTools
8
8
using SciMLStructures
9
9
using SymbolicIndexingInterface
10
10
using DocStringExtensions
@@ -741,7 +741,6 @@ include("ensemble/ensemble_analysis.jl")
741
741
include (" solve.jl" )
742
742
include (" interpolation.jl" )
743
743
include (" integrator_interface.jl" )
744
- include (" tabletraits.jl" )
745
744
include (" remake.jl" )
746
745
include (" callbacks.jl" )
747
746
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- using SciMLBase, Test
1
+ using SciMLBase, Tables, Test
2
2
using OrdinaryDiffEq, DataFrames, SymbolicIndexingInterface
3
3
4
- @test SciMLBase . Tables. isrowtable (ODESolution)
5
- @test SciMLBase . Tables. isrowtable (RODESolution)
6
- @test SciMLBase . Tables. isrowtable (DAESolution)
7
- @test ! SciMLBase . Tables. isrowtable (SciMLBase. NonlinearSolution)
8
- @test ! SciMLBase . Tables. isrowtable (SciMLBase. LinearSolution)
9
- @test ! SciMLBase . Tables. isrowtable (SciMLBase. QuadratureSolution)
10
- @test ! SciMLBase . Tables. isrowtable (SciMLBase. OptimizationSolution)
4
+ @test Tables. isrowtable (ODESolution)
5
+ @test Tables. isrowtable (RODESolution)
6
+ @test Tables. isrowtable (DAESolution)
7
+ @test ! Tables. isrowtable (SciMLBase. NonlinearSolution)
8
+ @test ! Tables. isrowtable (SciMLBase. LinearSolution)
9
+ @test ! Tables. isrowtable (SciMLBase. QuadratureSolution)
10
+ @test ! Tables. isrowtable (SciMLBase. OptimizationSolution)
11
11
12
12
function rhs (u, p, t)
13
13
return - u
You can’t perform that action at this time.
0 commit comments