Skip to content

Commit

Permalink
remove more type inference
Browse files Browse the repository at this point in the history
  • Loading branch information
dlfivefifty committed Apr 12, 2019
1 parent bbcde0b commit d63fe22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Spaces/Spaces.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ include("SubSpace.jl")
include("QuotientSpace.jl")


(A::Space,B::Space) = domainscompatible(A,B) ? SumSpace(A,B) : PiecewiseSpace(A,B)
(A::Space,B::Space)::Any = domainscompatible(A,B) ? SumSpace(A,B) : PiecewiseSpace(A,B)
(f::Fun,g::Fun) = Fun(space(f) space(g), interlace(coefficients(f),coefficients(g)))

(f::Fun,g::Fun,h::Fun...) = ((f g), h...)
Expand Down

0 comments on commit d63fe22

Please sign in to comment.