Skip to content

Commit

Permalink
Make some globals const
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Feb 19, 2024
1 parent fe8374b commit 984c5ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Arith.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export e2p

FracPoly{T} = Generic.UnivPoly{Generic.Frac{T}, Generic.MPoly{Generic.Frac{T}}} where T
NfPoly = Union{PolyRingElem{QQFieldElem}, PolyRingElem{nf_elem}}
const FracPoly{T} = Generic.UnivPoly{Generic.Frac{T}, Generic.MPoly{Generic.Frac{T}}} where T
const NfPoly = Union{PolyRingElem{QQFieldElem}, PolyRingElem{nf_elem}}

"""
normalize(a::FracPoly)
Expand Down

0 comments on commit 984c5ba

Please sign in to comment.