Skip to content

Commit 1787b20

Browse files
authored
ContinuumArrays v0.15 (#73)
* ContinuumArrays v0.15 * Update ci.yml
1 parent 7f494a7 commit 1787b20

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
version:
13-
- '1.7'
14-
- '1'
13+
- '1.9'
1514
os:
1615
- ubuntu-latest
1716
- macOS-latest

Project.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "HarmonicOrthogonalPolynomials"
22
uuid = "e416a80e-9640-42f3-8df8-80a93ca01ea5"
33
authors = ["Sheehan Olver <solver@mac.com>"]
4-
version = "0.4.7"
4+
version = "0.5"
55

66
[deps]
77
BlockArrays = "8e7c35d0-a365-5155-bbbb-fb81a777f24e"
@@ -20,16 +20,16 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
2020
[compat]
2121
BlockArrays = "0.16"
2222
BlockBandedMatrices = "0.11, 0.12"
23-
ClassicalOrthogonalPolynomials = "0.7, 0.8, 0.9, 0.10, 0.11"
24-
ContinuumArrays = "0.12, 0.13, 0.14"
25-
DomainSets = "0.5, 0.6"
23+
ClassicalOrthogonalPolynomials = "0.11"
24+
ContinuumArrays = "0.15"
25+
DomainSets = "0.6"
2626
FastTransforms = "0.14, 0.15"
2727
InfiniteArrays = "0.12, 0.13"
2828
IntervalSets = "0.5, 0.6, 0.7"
29-
QuasiArrays = "0.9, 0.10, 0.11"
29+
QuasiArrays = "0.11"
3030
SpecialFunctions = "1, 2"
3131
StaticArrays = "1"
32-
julia = "1.7"
32+
julia = "1.9"
3333

3434
[extras]
3535
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

src/HarmonicOrthogonalPolynomials.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import BlockArrays: block, blockindex, unblock, BlockSlice
66
import DomainSets: indomain, Sphere
77
import LinearAlgebra: norm, factorize
88
import QuasiArrays: to_quasi_index, SubQuasiArray, *
9-
import ContinuumArrays: TransformFactorization, @simplify, ProjectionFactorization, plan_grid_transform, grid, _grid, _plotgrid, AbstractBasisLayout, MemoryLayout
9+
import ContinuumArrays: TransformFactorization, @simplify, ProjectionFactorization, plan_grid_transform, grid, grid_layout, plotgrid_layout, AbstractBasisLayout, MemoryLayout
1010
import ClassicalOrthogonalPolynomials: checkpoints, _sum, cardinality, increasingtruncations
1111
import BlockBandedMatrices: BlockRange1, _BandedBlockBandedMatrix
1212
import FastTransforms: Plan, interlace

src/multivariateops.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,6 @@ QuasiArrays.mul(A::MultivariateOrthogonalPolynomial, b::AbstractVector) =
108108

109109
# plotting
110110
const MAX_PLOT_BLOCKS = 200
111-
_grid(::MultivariateOPLayout, S, n::Integer) = grid(S, findblock(axes(S,2), n))
112-
_plotgrid(::MultivariateOPLayout, S, n::Integer) = plotgrid(S, findblock(axes(S,2), n))
113-
_plotgrid(::MultivariateOPLayout, S, B::Block{1}) = grid(S, min(2B, Block(MAX_PLOT_BLOCKS)))
111+
grid_layout(::MultivariateOPLayout, S, n::Integer) = grid(S, findblock(axes(S,2), n))
112+
plotgrid_layout(::MultivariateOPLayout, S, n::Integer) = plotgrid(S, findblock(axes(S,2), n))
113+
plotgrid_layout(::MultivariateOPLayout, S, B::Block{1}) = grid(S, min(2B, Block(MAX_PLOT_BLOCKS)))

0 commit comments

Comments
 (0)