Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
sage -fiximports src/sage/stats
Browse files Browse the repository at this point in the history
  • Loading branch information
alexchandler100 authored and Matthias Koeppe committed Jan 30, 2023
1 parent 572896d commit 965dfc6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/sage/stats/distributions/discrete_gaussian_lattice.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@

from sage.functions.log import exp
from sage.functions.other import ceil
from sage.rings.all import RealField, RR, ZZ, QQ
from sage.rings.real_mpfr import RealField
from sage.rings.real_mpfr import RR
from sage.rings.integer_ring import Z as ZZ
from sage.rings.rational_field import Q as QQ
from .discrete_gaussian_integer import DiscreteGaussianDistributionIntegerSampler
from sage.structure.sage_object import SageObject
from sage.matrix.constructor import matrix, identity_matrix
Expand Down
3 changes: 2 additions & 1 deletion src/sage/stats/distributions/discrete_gaussian_polynomial.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@
# policies, either expressed or implied, of the FreeBSD Project.
#*****************************************************************************/

from sage.rings.all import RR, ZZ
from sage.rings.real_mpfr import RR
from sage.rings.integer_ring import Z as ZZ
from .discrete_gaussian_integer import DiscreteGaussianDistributionIntegerSampler
from sage.structure.sage_object import SageObject

Expand Down

0 comments on commit 965dfc6

Please sign in to comment.