diff --git a/Project.toml b/Project.toml index 93b95098..a69b739d 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "MeasureBase" uuid = "fa1605e6-acd5-459c-a1e6-7e635759db14" authors = ["Chad Scherrer and contributors"] -version = "0.14.4" +version = "0.14.5" [deps] ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" @@ -35,12 +35,12 @@ ChangesOfVariables = "0.1.3" Compat = "3.35, 4" ConstructionBase = "1.3" DensityInterface = "0.4" -FillArrays = "0.12, 0.13" +FillArrays = "0.12, 0.13, 1" FunctionChains = "0.1" IfElse = "0.1" IntervalSets = "0.7" InverseFunctions = "0.1.8" -IrrationalConstants = "0.1" +IrrationalConstants = "0.1, 0.2" LogExpFunctions = "0.3" LogarithmicNumbers = "1" MappedArrays = "0.4" @@ -51,10 +51,3 @@ SpecialFunctions = "2" Static = "0.5, 0.6" Tricks = "0.1" julia = "1.3" - -[extras] -Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" -ChainRulesTestUtils = "cdddcdb0-9152-4a09-a978-84456f9df70a" - -[targets] -test = ["Aqua", "ChainRulesTestUtils"] diff --git a/src/MeasureBase.jl b/src/MeasureBase.jl index 2f4cfb0c..72048c49 100644 --- a/src/MeasureBase.jl +++ b/src/MeasureBase.jl @@ -48,18 +48,6 @@ export basemeasure export basekernel export productmeasure -""" - inssupport(m, x) - insupport(m) - -`insupport(m,x)` computes whether `x` is in the support of `m`. - -`insupport(m)` returns a function, and satisfies - - insupport(m)(x) == insupport(m, x) -""" -function insupport end - export insupport export getdof export transport_to @@ -70,8 +58,6 @@ abstract type AbstractMeasure end AbstractMeasure(m::AbstractMeasure) = m -using Static: @constprop - function Pretty.quoteof(d::M) where {M<:AbstractMeasure} the_names = fieldnames(typeof(d)) :($M($([getfield(d, n) for n in the_names]...))) diff --git a/test/Project.toml b/test/Project.toml new file mode 100644 index 00000000..3b769743 --- /dev/null +++ b/test/Project.toml @@ -0,0 +1,15 @@ +[deps] +Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" +ChainRulesTestUtils = "cdddcdb0-9152-4a09-a978-84456f9df70a" +ChangesOfVariables = "9e997f8a-9a97-42d5-a9f1-ce6bfc15e2c0" +DensityInterface = "b429d917-457f-4dbc-8f4c-0cc954292b1d" +InverseFunctions = "3587e190-3f89-42d0-90ee-14403ec27112" +IrrationalConstants = "92d709cd-6900-40b7-9082-c6be49f344b6" +LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" +LogExpFunctions = "2ab3a3ac-af41-5b50-aa03-7779005ae688" +LogarithmicNumbers = "aa2f6b4e-9042-5d33-9679-40d3a6b85899" +Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" +SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b" +Static = "aedffcd0-7271-4cad-89d0-dc628f76c6d3" +Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" +Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"