Changeset fe02b1 in git for Singular


Ignore:
Timestamp:
Apr 25, 2012, 8:38:08 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38dfc5131670d387a89455159ed1e071997eec94')
Children:
0fd1715860b463009cfd80025e81bd671f0a0a2d
Parents:
84fc1fddf725ce226a336195603ebcadbb650d4c
Message:
my rewrite of bigintmat as a matrix of numbers from any coeff. domain

fix: several bugs and mem. leaks
add: improved interface (mostly backward compatible)
chg: many minor improvements
add: started documenting with doxygen comments
add: lots of assumes

NOTE: NULL should NOT be used as a coeff. domain (use coeffs_BIGINT for Q!)
Location:
Singular
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/grammar.cc

    r84fc1f rfe02b1  
    31773177              h=(idhdl)v->data;
    31783178              delete IDBIMAT(h);
    3179               IDBIMAT(h) = new bigintmat(r,c);
     3179              IDBIMAT(h) = new bigintmat(r, c, coeffs_BIGINT);
    31803180              if (IDBIMAT(h)==NULL) YYERROR;
    31813181            }
  • Singular/grammar.y

    r84fc1f rfe02b1  
    935935              h=(idhdl)v->data;
    936936              delete IDBIMAT(h);
    937               IDBIMAT(h) = new bigintmat(r,c);
     937              IDBIMAT(h) = new bigintmat(r, c, coeffs_BIGINT);
    938938              if (IDBIMAT(h)==NULL) YYERROR;
    939939            }
Note: See TracChangeset for help on using the changeset viewer.