Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 0 additions & 48 deletions test/atoms.jl

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
36 changes: 6 additions & 30 deletions test/commutativetests.jl
Original file line number Diff line number Diff line change
@@ -1,30 +1,6 @@
include("mutable_arithmetics.jl")

include("zip.jl")
include("variable.jl")
include("monomial.jl")
include("term.jl")
include("monomial_vector.jl")
include("polynomial.jl")
include("det.jl")

include("rational.jl")
isdefined(Mod, Symbol("@complex_polyvar")) && include("complex.jl")

include("promote.jl")
include("hash.jl")
include("norm.jl")

include("algebra.jl")
include("comparison.jl")

include("substitution.jl")
include("differentiation.jl")
include("division.jl")
include("gcd.jl")
include("chain_rules.jl")

include("show.jl")

include("example1.jl")
include("example2.jl")
for file in readdir(joinpath(@__DIR__, "commutative"))
if file == "complex.jl" && !isdefined(Mod, Symbol("@complex_polyvar"))
continue
end
include(joinpath(@__DIR__, "commutative", file))
end
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions test/noncommutativetests.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include("ncmonomial.jl")
include("ncoperators.jl")
include("nccomparison.jl")
for file in readdir(joinpath(@__DIR__, "noncommutative"))
include(joinpath(@__DIR__, "noncommutative", file))
end
Loading