Skip to content

Commit 0d7d8c2

Browse files
authored
Merge branch 'master' into pretty-printing
2 parents 8143b34 + ede3633 commit 0d7d8c2

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

REQUIRE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
julia 0.7
22
MultivariatePolynomials 0.2.1
3+
Reexport 0.2.0

src/DynamicPolynomials.jl

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,9 @@
11
module DynamicPolynomials
22

3-
using MultivariatePolynomials
3+
using Reexport
4+
@reexport using MultivariatePolynomials
45
const MP = MultivariatePolynomials
56

6-
# Exports which should be available for an enduser
7-
import MultivariatePolynomials: differentiate, variables, subs, maxdegree, mindegree
8-
export differentiate, variables, subs, maxdegree, mindegree
9-
10-
#const PolyType{C} = Union{DMonomialLike{C}, RationalPoly{C}}
11-
#iscomm(::PolyType{C}) where {C} = C
12-
#Base.zero(p::PolyType{C}) where {C} = zero(typeof(p))
13-
#Base.one(p::PolyType{C}) where {C} = one(typeof(p))
147

158
include("var.jl")
169
include("mono.jl")
@@ -46,5 +39,4 @@ include("subs.jl")
4639

4740
include("div.jl")
4841

49-
5042
end # module

0 commit comments

Comments
 (0)