"""1all.py -- export of abelian groups to Sage2"""34#*****************************************************************************5#6# Sage: System for Algebra and Geometry Experimentation7#8# Copyright (C) 2006 William Stein <[email protected]>9#10# Distributed under the terms of the GNU General Public License (GPL)11#12# This code is distributed in the hope that it will be useful,13# but WITHOUT ANY WARRANTY; without even the implied warranty of14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU15# General Public License for more details.16#17# The full text of the GPL is available at:18#19# http://www.gnu.org/licenses/20#*****************************************************************************2122#from dual_abelian_group import DualAbelianGroup23from abelian_group import AbelianGroup, is_AbelianGroup, word_problem24from values import AbelianGroupWithValues2526# TODO:27# Implement group homset, conversion of generator images to morphism28from abelian_group_morphism import AbelianGroupMorphism293031