Skip to content

Commit 35b773b

Browse files
committed
Project.toml
1 parent 53107c7 commit 35b773b

File tree

6 files changed

+47
-19
lines changed

6 files changed

+47
-19
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
Manifest.toml

Project.toml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name = "MultivariateOrthogonalPolynomials"
2+
uuid = "4f6956fd-4f93-5457-9149-7bfc4b2ce06d"
3+
4+
[deps]
5+
ApproxFun = "28f2ccd6-bb30-5033-b560-165f7b14dc2f"
6+
ApproxFunBase = "fbd15aa5-315a-5a7d-a8a4-24992e37be05"
7+
ApproxFunFourier = "59844689-9c9d-51bf-9583-5b794ec66d30"
8+
ApproxFunOrthogonalPolynomials = "b70543e2-c0d9-56b8-a290-0d4d6d4de211"
9+
BandedMatrices = "aae01518-5342-5314-be14-df237901396f"
10+
BlockArrays = "8e7c35d0-a365-5155-bbbb-fb81a777f24e"
11+
DomainSets = "5b8099bc-c8ec-5219-889f-1d9e522a28bf"
12+
FastGaussQuadrature = "442a2c76-b920-505d-bb47-c5924d526838"
13+
FastTransforms = "057dd010-8810-581a-b7be-e3fc3b93f78c"
14+
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
15+
InfiniteArrays = "4858937d-0d70-526a-a4dd-2d5cb5dd786c"
16+
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
17+
LazyArrays = "5078a376-72f3-5289-bfd5-ec5146d43c02"
18+
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
19+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
20+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
21+
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
22+
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
23+
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
24+
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
25+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
26+
27+
[compat]
28+
ApproxFun = "0.11"
29+
ApproxFunBase = "≥ 0.0.3"
30+
BandedMatrices = "0.9"
31+
BlockArrays = "0.8"
32+
DomainSets = "≥ 0.0.1"
33+
FastGaussQuadrature = "≥ 0.3.0"
34+
FastTransforms = "≥ 0.4.1"
35+
FillArrays = "≥ 0.5"
36+
InfiniteArrays = "0.0.3"
37+
LazyArrays = "0.8"
38+
RecipesBase = "≥ 0.5.0"
39+
SpecialFunctions = "≥ 0.6.0"
40+
StaticArrays = "≥ 0.3.0"
41+
julia = "≥ 0.7.0"

REQUIRE

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/MultivariateOrthogonalPolynomials.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
module MultivariateOrthogonalPolynomials
22
using Base, RecipesBase, ApproxFun, BandedMatrices, BlockArrays,
33
FastTransforms, FastGaussQuadrature, StaticArrays, FillArrays,
4-
LinearAlgebra, Libdl, SpecialFunctions, LazyArrays, InfiniteArrays
4+
LinearAlgebra, Libdl, SpecialFunctions, LazyArrays, InfiniteArrays,
5+
DomainSets
56

67
# package code goes here
78
import Base: values,getindex,setindex!,*, +, -, ==,<,<=,>,
@@ -43,7 +44,7 @@ import ApproxFunBase: ConstantSpace, NoSpace, prectype,
4344
union_rule, coefficients, RealUnivariateSpace, PiecewiseSegment, rangetype, cfstype
4445

4546
# Multivariate import
46-
import ApproxFunBase: Domain2d, DirectSumSpace, AbstractProductSpace, factor,
47+
import ApproxFunBase: DirectSumSpace, AbstractProductSpace, factor,
4748
BivariateFun, ProductFun, LowRankFun, lap, columnspace,
4849
blockbandwidths, subblockbandwidths, fromtensor, totensor, isbandedblockbanded,
4950
Tensorizer, tensorizer, block, blockstart, blockstop, blocklengths,

src/Triangle/Triangle.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export Triangle, JacobiTriangle, TriangleWeight, WeightedTriangle
33

44
## Triangle Def
55
# currently right trianglel
6-
struct Triangle <: Domain2d{Float64}
6+
struct Triangle <: EuclideanDomain{2,Float64}
77
a::Vec{2,Float64}
88
b::Vec{2,Float64}
99
c::Vec{2,Float64}

test/test_cone.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using Revise
21
using ApproxFun, MultivariateOrthogonalPolynomials, Test
32
import MultivariateOrthogonalPolynomials: rectspace, totensor
43

0 commit comments

Comments
 (0)