Skip to content

Commit 5fc7037

Browse files
committed
compat update basisfunctions
1 parent 7ee4b1e commit 5fc7037

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "FrameFun"
22
uuid = "bbafa164-4497-5d18-87cf-33e911f89480"
33
authors = ["daanhb,roelmatthysen,marcusdavidwebb,vincentcp"]
4-
version = "0.4.6"
4+
version = "0.4.7"
55

66
[deps]
77
BasisFunctions = "4343a256-5453-507d-8aad-01a9d7189916"
@@ -23,7 +23,7 @@ Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
2323
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
2424

2525
[compat]
26-
BasisFunctions = "0.5.5"
26+
BasisFunctions = "0.5.6"
2727
CompositeTypes = "0.1.3"
2828
DomainSets = "0.5.15,0.6.1"
2929
FillArrays = "0.12,0.13"

src/frames/extensionframes.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ hasantiderivative(f::ExtensionFrame) = false
7676

7777
iscompatible(d1::ExtensionFrame, d2::ExtensionFrame) = iscompatible(basis(d1),basis(d2))
7878

79-
function (*)(d1::ExtensionFrame, d2::ExtensionFrame, args...)
79+
function BasisFunctions.dict_multiply(d1::ExtensionFrame, d2::ExtensionFrame, args...)
8080
@assert iscompatible(d1,d2)
81-
(mset, mcoef) = (*)(basis(d1),basis(d2),args...)
81+
(mset, mcoef) = BasisFunctions.dict_multiply(basis(d1),basis(d2),args...)
8282
df = ExtensionFrame(support(d1) support(d2),mset)
8383
(df, mcoef)
8484
end

0 commit comments

Comments
 (0)