Skip to content

Commit 9e1e3e3

Browse files
committed
Fun for Interval
1 parent 8b52556 commit 9e1e3e3

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ name: CI
22
on:
33
- push
44
- pull_request
5+
6+
concurrency:
7+
group: build-${{ github.event.pull_request.number || github.ref }}
8+
cancel-in-progress: true
9+
510
jobs:
611
test:
712
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}

src/Spaces/Jacobi/Jacobi.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ zeros(S::Jacobi) = Fun(S,zeros(prectype(S),1))
136136

137137
_chebyintervalcoeff(J) = [(J.b-J.a)/(2+J.a+J.b), 2.0/(2+J.a+J.b)]
138138
_Fun(J::Jacobi, ::ChebyshevInterval) = Fun(J, _chebyintervalcoeff(J))
139-
function _Fun(J::Jacobi, d::ClosedInterval)
139+
function _Fun(J::Jacobi, d::Interval)
140140
scale = complexlength(d)/2
141141
coeffs = _chebyintervalcoeff(J) .* scale
142142
coeffs[1] += leftendpoint(d)

0 commit comments

Comments
 (0)