Changeset edd935 in git


Ignore:
Timestamp:
Dec 21, 2023, 2:38:03 PM (5 months ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'd08f5f0bb3329b8ca19f23b74cb1473686415c3a')
Children:
99a6af79b57a36052bcbeb36b895628ae3344600
Parents:
aa4456dd5547a4584746e3bda34a72f2f6093c44
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2023-12-21 14:38:03+01:00
git-committer:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2023-12-21 14:38:46+01:00
Message:
fix: handle ideal with 0 entries in maps
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/maps/gen_maps.cc

    raa4456 redd935  
    8787ideal maMapIdeal(const ideal map_id, const ring preimage_r,const ideal image_id, const ring image_r, const nMapFunc nMap)
    8888{
     89  // handle special cases
     90  if (IDELEMS(map_id)<=0)
     91    return idInit(0,map_id->rank);
    8992  if(!rIsNCRing(image_r))
    9093  {
Note: See TracChangeset for help on using the changeset viewer.