File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
src/Operators/functionals Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1
1
name = " ApproxFunBase"
2
2
uuid = " fbd15aa5-315a-5a7d-a8a4-24992e37be05"
3
- version = " 0.8.15 "
3
+ version = " 0.8.16 "
4
4
5
5
[deps ]
6
6
AbstractFFTs = " 621f4979-c628-5d54-868e-fcf4e3e8185c"
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ evaluation_point(C::Evaluation) = C.x
9
9
10
10
@enum Boundary RightEndPoint= 1 LeftEndPoint= - 1
11
11
12
+ isleftendpoint (_) = false
13
+ isrightendpoint (_) = false
12
14
isleftendpoint (:: typeof (leftendpoint)) = true
13
15
isrightendpoint (:: typeof (rightendpoint)) = true
14
16
isrightendpoint (x:: Boundary ) = x == RightEndPoint
Original file line number Diff line number Diff line change 669
669
670
670
@testset " Evaluation left/rightendpoint" begin
671
671
@test ApproxFunBase. isleftendpoint (ApproxFunBase. LeftEndPoint)
672
+ @test ! ApproxFunBase. isrightendpoint (ApproxFunBase. LeftEndPoint)
672
673
@test ApproxFunBase. isrightendpoint (ApproxFunBase. RightEndPoint)
674
+ @test ! ApproxFunBase. isleftendpoint (ApproxFunBase. RightEndPoint)
673
675
@test ApproxFunBase. isleftendpoint (leftendpoint)
676
+ @test ! ApproxFunBase. isrightendpoint (leftendpoint)
674
677
@test ApproxFunBase. isrightendpoint (rightendpoint)
678
+ @test ! ApproxFunBase. isleftendpoint (rightendpoint)
675
679
end
676
680
677
681
@time include (" ETDRK4Test.jl" )
You can’t perform that action at this time.
0 commit comments