File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
module Domains
2
2
3
3
import .. Geometry: Geometry, float_type
4
- using IntervalSets
4
+ import IntervalSets
5
5
export RectangleDomain
6
6
7
7
"""
@@ -62,7 +62,7 @@ function IntervalDomain(
62
62
end
63
63
IntervalDomain (promote (coord_min, coord_max)... , boundary_names)
64
64
end
65
- IntervalDomain (coords:: ClosedInterval ; kwargs... ) =
65
+ IntervalDomain (coords:: IntervalSets. ClosedInterval ; kwargs... ) =
66
66
IntervalDomain (coords. left, coords. right; kwargs... )
67
67
68
68
"""
@@ -130,8 +130,8 @@ Construct a `RectangularDomain` in the horizontal.
130
130
If a given x1 or x2 boundary is not periodic, then `x1boundary` or `x2boundary` boundary name keyword arguments must be supplied.
131
131
"""
132
132
function RectangleDomain (
133
- x1:: ClosedInterval{X1CT} ,
134
- x2:: ClosedInterval{X2CT} ;
133
+ x1:: IntervalSets. ClosedInterval{X1CT} ,
134
+ x2:: IntervalSets. ClosedInterval{X2CT} ;
135
135
x1periodic = false ,
136
136
x2periodic = false ,
137
137
x1boundary:: BCTagType = nothing ,
You can’t perform that action at this time.
0 commit comments