Skip to content

Commit

Permalink
fix misplaced bracket for maps
Browse files Browse the repository at this point in the history
  • Loading branch information
Jens Brandt authored and thofma committed Nov 19, 2024
1 parent 1b69e3d commit 5b4309e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Map/NumberField.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ end

is_injective(m::NumFieldHom) = true

is_surjective(m::NumFieldHom) = absolute_degree(domain(m) == absolute_degree(codomain(m)))
is_surjective(m::NumFieldHom) = absolute_degree(domain(m)) == absolute_degree(codomain(m))

is_bijective(m::NumFieldHom) = is_surjective(m)

Expand Down

0 comments on commit 5b4309e

Please sign in to comment.