Skip to content

Commit 1533887

Browse files
check for unicode allowance.
1 parent 8a4cb73 commit 1533887

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: experimental/ExteriorAlgebra/src/ExteriorAlgebra.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -894,7 +894,7 @@ end
894894
@attr ExteriorAlgebra{T} function _exterior_algebra(S::MPolyDecRing{T}) where {T}
895895
@assert is_z_graded(S)
896896
R = base_ring(S)
897-
new_symb = Symbol.([string(s)*" ̌" for s in symbols(S)])
897+
new_symb = Symbol.([string(s)*(is_unicode_allowed() ? " ̌" : "'") for s in symbols(S)])
898898
return ExteriorAlgebra(R, new_symb)
899899
end
900900

0 commit comments

Comments
 (0)