Skip to content

Commit

Permalink
Sort imports
Browse files Browse the repository at this point in the history
  • Loading branch information
SoongNoonien committed Oct 26, 2024
1 parent 25a4f8b commit db3af26
Showing 1 changed file with 71 additions and 10 deletions.
81 changes: 71 additions & 10 deletions src/Imports.jl
Original file line number Diff line number Diff line change
@@ -1,10 +1,71 @@
import Base: show, isone, iszero, one, zero, conj, inv, rand, deepcopy_internal, hash, promote_rule,
getindex, eltype, length, iterate, +, -, *, //, ^, ==
import Compat: pkgversion
using Oscar.Random: Random, SamplerTrivial, GLOBAL_RNG
using Oscar.RandomExtensions: RandomExtensions, Make2, AbstractRNG
import Oscar.AbstractAlgebra: parent_type, elem_type, base_ring, base_ring_type, parent, is_domain_type,
is_exact_type, canonical_unit, isequal, divexact, zero!, mul!, add!, get_cached!, is_unit,
characteristic, Ring, RingElem, expressify, evaluate, normal_form, divexact
import Oscar: tensor_product, norm, scalar_product, norm, scalar_product, class_multiplication_coefficient,
order, degree, number_of_conjugacy_classes, pretty, Indent, Dedent
import Base:
*,
+,
-,
//,
==,
^,
conj,
deepcopy_internal,
eltype,
getindex,
hash,
inv,
isone,
iszero,
iterate,
length,
one,
promote_rule,
rand,
show,
zero

import Compat:
pkgversion

import Oscar.Random:
GLOBAL_RNG,
Random,
SamplerTrivial

import Oscar.RandomExtensions:
AbstractRNG,
RandomExtensions,
Make2

import Oscar.AbstractAlgebra:
add!,
base_ring,
base_ring_type,
canonical_unit,
characteristic,
divexact,
elem_type,
evaluate,
expressify,
get_cached!,
is_domain_type,
isequal,
is_exact_type,
is_unit,
mul!,
normal_form,
parent,
parent_type,
Ring,
RingElem,
zero!

import Oscar:
class_multiplication_coefficient,
Dedent,
degree,
Indent,
norm,
number_of_conjugacy_classes,
order,
pretty,
scalar_product,
tensor_product

0 comments on commit db3af26

Please sign in to comment.