From 3203f8bb0881e8eb3ca4382205f2c3da65626b62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20G=C3=B6ttgens?= Date: Wed, 1 May 2024 14:12:30 +0200 Subject: [PATCH] Move aliases for minpoly and charpoly from Oscar (#1696) --- Project.toml | 2 +- src/Aliases.jl | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 070e354141..50ee7716d9 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "AbstractAlgebra" uuid = "c3fe647b-3220-5bb0-a1ea-a7954cac585d" -version = "0.41.0" +version = "0.41.1" [deps] InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240" diff --git a/src/Aliases.jl b/src/Aliases.jl index d7f42080eb..7cd08cf887 100644 --- a/src/Aliases.jl +++ b/src/Aliases.jl @@ -26,11 +26,15 @@ const is_upper_triangular = istriu # predeclare some functions to allow defining aliases for some of our own functions +function charpoly end +function minpoly end function number_of_columns end function number_of_generators end function number_of_rows end function number_of_variables end +@alias characteristic_polynomial charpoly +@alias minimal_polynomial minpoly @alias ncols number_of_columns @alias ngens number_of_generators @alias nrows number_of_rows