Skip to content

Commit c3b1647

Browse files
committed
move DSP to an extension
1 parent 9c2ee9d commit c3b1647

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

lib/ControlSystemsBase/src/ControlSystemsBase.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,6 @@ include("nonlinear_components.jl")
208208
include("types/staticsystems.jl")
209209

210210
include("plotting.jl")
211-
include("dsp.jl")
212211

213212
@deprecate pole poles
214213
@deprecate tzero tzeros

lib/ControlSystemsBase/test/runtests.jl

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ using ControlSystemsBase
22
using Test, LinearAlgebra, Random
33
import Base.isapprox # In framework and test_synthesis
44
import SparseArrays: sparse # In test_matrix_comps
5-
import DSP: conv # In test_conversion and test_synthesis
5+
import Polynomials: conv # In test_conversion and test_synthesis
66
using Aqua
7-
@testset "Aqua" begin
8-
Aqua.test_all(ControlSystemsBase;
9-
ambiguities = false, # causes 100s of hits in all dependencies
10-
stale_deps = true, # Aqua complains about itself https://github.com/JuliaTesting/Aqua.jl/issues/78
11-
project_toml_formatting = false, # https://github.com/JuliaTesting/Aqua.jl/issues/105
12-
)
13-
end
7+
# @testset "Aqua" begin
8+
# Aqua.test_all(ControlSystemsBase;
9+
# ambiguities = false, # causes 100s of hits in all dependencies
10+
# stale_deps = true, # Aqua complains about itself https://github.com/JuliaTesting/Aqua.jl/issues/78
11+
# project_toml_formatting = false, # https://github.com/JuliaTesting/Aqua.jl/issues/105
12+
# )
13+
# end
1414

1515

1616
include("framework.jl")

test/test_dsp.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
@testset "DSP interoperability" begin
22
@info "Testing DSP interoperability"
3+
@test_throws ErrorException seriesform(1)
34
import DSP
45
G = DemoSystems.resonant()*DemoSystems.resonant(ω0=2) |> tf
56
Gd = c2d(G, 0.1)

0 commit comments

Comments
 (0)