File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -208,7 +208,6 @@ include("nonlinear_components.jl")
208208include (" types/staticsystems.jl" )
209209
210210include (" plotting.jl" )
211- include (" dsp.jl" )
212211
213212@deprecate pole poles
214213@deprecate tzero tzeros
Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ using ControlSystemsBase
22using Test, LinearAlgebra, Random
33import Base. isapprox # In framework and test_synthesis
44import 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
66using 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
1616include (" framework.jl" )
Original file line number Diff line number Diff line change 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 )
You can’t perform that action at this time.
0 commit comments