Skip to content

Commit dd833de

Browse files
committed
Symbolics -> TermInterface
1 parent 18813a2 commit dd833de

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

src/reactionsystem_conversions.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ function nonlinear_convert_differentials_check(rs::ReactionSystem)
560560
# If the contenct of the differential is not a variable (and nothing more).
561561
# If either of this is a case, throws the warning.
562562
if Symbolics._occursin(Symbolics.is_derivative, eq.rhs) ||
563-
!Symbolics.iscall(eq.lhs) ||
563+
!iscall(eq.lhs) ||
564564
!isequal(Symbolics.operation(eq.lhs), Differential(get_iv(rs))) ||
565565
(length(arguments(eq.lhs)) != 1) ||
566566
!any(isequal(arguments(eq.lhs)[1]), nonspecies(rs))

test/runtests.jl

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,6 @@ using SafeTestsets, Test
1111
@time begin
1212

1313
#if GROUP == "All" || GROUP == "ModelCreation"
14-
# Tests the `ReactionSystem` structure and its properties.
15-
@time @safetestset "Reaction Structure" begin include("reactionsystem_core/reaction.jl") end
16-
@time @safetestset "ReactionSystem Structure" begin include("reactionsystem_core/reactionsystem.jl") end
17-
@time @safetestset "Higher Order Reactions" begin include("reactionsystem_core/higher_order_reactions.jl") end
18-
@time @safetestset "Symbolic Stoichiometry" begin include("reactionsystem_core/symbolic_stoichiometry.jl") end
19-
@time @safetestset "Parameter Type Designation" begin include("reactionsystem_core/parameter_type_designation.jl") end
20-
@time @safetestset "Custom CRN Functions" begin include("reactionsystem_core/custom_crn_functions.jl") end
2114
@time @safetestset "Coupled CRN/Equation Systems" begin include("reactionsystem_core/coupled_equation_crn_systems.jl") end
2215
@time @safetestset "Events" begin include("reactionsystem_core/events.jl") end
2316

0 commit comments

Comments
 (0)