File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ abstract type AbstractSpaceStyle end
22
33struct FiniteSpaceStyle <: AbstractSpaceStyle end
44struct ContinuousSpaceStyle <: AbstractSpaceStyle end
5- struct HybridSpaceStyle <: AbstractSpaceStyle end
5+ struct HybridProductSpaceStyle <: AbstractSpaceStyle end
66struct UnknownSpaceStyle <: AbstractSpaceStyle end
77
88"""
2626
2727SpaceStyle (:: AbstractInterval ) = ContinuousSpaceStyle ()
2828
29- const BASE_SPACE_STYLES = Union{FiniteSpaceStyle, ContinuousSpaceStyle, HybridSpaceStyle }
29+ const BASE_SPACE_STYLES = Union{FiniteSpaceStyle, ContinuousSpaceStyle, HybridProductSpaceStyle }
3030function promote_spacestyle (:: T1 , :: T2 ) where {T1 <: BASE_SPACE_STYLES , T2 <: BASE_SPACE_STYLES }
31- return (T1 == T2) ? T1 () : HybridSpaceStyle ()
31+ return (T1 == T2) ? T1 () : HybridProductSpaceStyle ()
3232end
3333promote_spacestyle (_, _) = UnknownSpaceStyle ()
3434
You can’t perform that action at this time.
0 commit comments