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 11name = " ApproxFunBase"
22uuid = " fbd15aa5-315a-5a7d-a8a4-24992e37be05"
3- version = " 0.8.15 "
3+ version = " 0.8.16 "
44
55[deps ]
66AbstractFFTs = " 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
99
1010@enum Boundary RightEndPoint= 1 LeftEndPoint= - 1
1111
12+ isleftendpoint (_) = false
13+ isrightendpoint (_) = false
1214isleftendpoint (:: typeof (leftendpoint)) = true
1315isrightendpoint (:: typeof (rightendpoint)) = true
1416isrightendpoint (x:: Boundary ) = x == RightEndPoint
Original file line number Diff line number Diff line change 669669
670670@testset " Evaluation left/rightendpoint" begin
671671 @test ApproxFunBase. isleftendpoint (ApproxFunBase. LeftEndPoint)
672+ @test ! ApproxFunBase. isrightendpoint (ApproxFunBase. LeftEndPoint)
672673 @test ApproxFunBase. isrightendpoint (ApproxFunBase. RightEndPoint)
674+ @test ! ApproxFunBase. isleftendpoint (ApproxFunBase. RightEndPoint)
673675 @test ApproxFunBase. isleftendpoint (leftendpoint)
676+ @test ! ApproxFunBase. isrightendpoint (leftendpoint)
674677 @test ApproxFunBase. isrightendpoint (rightendpoint)
678+ @test ! ApproxFunBase. isleftendpoint (rightendpoint)
675679end
676680
677681@time include (" ETDRK4Test.jl" )
You can’t perform that action at this time.
0 commit comments