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

Commit

Permalink
Adapt to new free_module naming
Browse files Browse the repository at this point in the history
  • Loading branch information
saraedum committed Sep 13, 2019
1 parent d044c89 commit 2482826
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/rings/ring_extension_morphism.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ class MapRelativeFieldToVectorSpace(Map):
# EK, iK, jK = K.vector_space(base, map=True)
# EL, iL, jL = L.vector_space(base, map=True)
base = _common_base(K,L)
EK, iK, jK = K.absolute_vector_space()
EL, iL, jL = L.absolute_vector_space()
EK, iK, jK = K.free_module(base=base, map=True)
EL, iL, jL = L.free_module(base=base, map=True)

self._dimK = EK.dimension()
self._iK = iK
Expand Down

0 comments on commit 2482826

Please sign in to comment.