Skip to content

Commit

Permalink
added some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kschwede committed Jul 12, 2024
1 parent 5c6fdb8 commit 83615bf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions NumberFields/NumberFields.m2
Original file line number Diff line number Diff line change
Expand Up @@ -620,11 +620,13 @@ matrixFromRingEl = method(Options => {});
matrixFromRingEl(NumberField, RingElement) := opts -> (nF, rEl) -> (
--R := ring nF;
R := nF;
--TODO: use the existing pushFwd if possible
return pushFwd(map(R^1, R^1, matrix{{rEl}}));
)
matrixFromRingEl(RingElement) := opts -> (rEl) -> (
--R := ring nF;
R := ring rEl;
--TODO: use the existing pushFwd if possible
return pushFwd(map(R^1, R^1, matrix{{rEl}}));
)

Expand Down

0 comments on commit 83615bf

Please sign in to comment.