Skip to content

Commit f4219d2

Browse files
authored
Merge pull request #342 from JuliaReach/auto-juliaformatter-pr
Automatic JuliaFormatter.jl run
2 parents 1d15019 + 43bab52 commit f4219d2

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/identity.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ end
135135
for M in @static VERSION < v"1.6" ? [:AbstractMatrix] :
136136
(:AbstractMatrix, :(Transpose{<:Any,<:AbstractVector}),
137137
:(Adjoint{<:Any,<:AbstractVector}))
138-
139138
@eval begin
140139
function Base.:(/)(A::$M, 𝐼::IdentityMultiple)
141140
size(A, 2) != 𝐼.n && throw(DimensionMismatch("incompatible dimensions"))

test/discretize.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ end
3535

3636
# get affine ctypes
3737
CTYPES = filter(x -> (occursin("Linear", string(x)) || occursin("Affine", string(x))) &&
38-
!occursin("Descriptor", string(x)), subtypes(AbstractContinuousSystem))
38+
!occursin("Descriptor", string(x)), subtypes(AbstractContinuousSystem))
3939

4040
# this test doesn't apply for second order systems and parametric systems
4141
filter!(x -> x SECOND_ORDER_CTYPES && x PARAMETRIC_CTYPES, CTYPES)
@@ -76,7 +76,7 @@ end
7676

7777
# get affine ctypes
7878
CTYPES = filter(x -> (occursin("Linear", string(x)) || occursin("Affine", string(x))) &&
79-
!occursin("Descriptor", string(x)), subtypes(AbstractContinuousSystem))
79+
!occursin("Descriptor", string(x)), subtypes(AbstractContinuousSystem))
8080

8181
# this test doesn't apply for second order systems and parametric systems
8282
filter!(x -> x SECOND_ORDER_CTYPES && x PARAMETRIC_CTYPES, CTYPES)

0 commit comments

Comments
 (0)