Changeset 81f4bd5 in git


Ignore:
Timestamp:
Dec 17, 2013, 1:14:40 PM (10 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'c5facdfddea2addfd91babd8b9019161dea4b695')
Children:
ce70e6c75303dccbb031dc5e9e87c5a9cd45aaf8
Parents:
d0e03be624a4a267bffe008f58988c85be1dfe2d
Message:
fix: missing compoments in normal (Santiago Laplagne)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/normal.lib

    rd0e03b r81f4bd5  
    44454445        printlevel = printlevel + 1;
    44464446        ideal JDefault = 0; // Now it uses the default J;
    4447         list nor1 = normalM(Id1, decomp, withDelta, denomOption, JDefault, JDefault)[1];
    4448         list nor2 = normalM(Id2, decomp, withDelta, denomOption, JDefault, JDefault)[1];
     4447        list nor1 = normalM(Id1, decomp, withDelta, denomOption, JDefault, JDefault);
     4448        list nor2 = normalM(Id2, decomp, withDelta, denomOption, JDefault, JDefault);
    44494449        printlevel = printlevel - 1;
    44504450        option(set,save_opt);
    4451         return(list(nor1, nor2));
     4451        list res = nor1 + nor2;
     4452        return(res);
    44524453      }
    44534454    }
     
    45684569
    45694570      ideal JDefault = 0;  // Now it uses the default J;
    4570       list nor1 = normalM(Id1, decomp, withDelta, denomOption, JDefault, JDefault)[1];
    4571       list nor2 = normalM(Id2, decomp, withDelta, denomOption, JDefault, JDefault)[1];
     4571      list nor1 = normalM(Id1, decomp, withDelta, denomOption, JDefault, JDefault);
     4572      list nor2 = normalM(Id2, decomp, withDelta, denomOption, JDefault, JDefault);
    45724573      printlevel = printlevel - 1;
    45734574      option(set,save_opt);
    4574       return(list(nor1, nor2));
     4575      list res = nor1 + nor2;
     4576      return(res);
    45754577    }
    45764578  }
Note: See TracChangeset for help on using the changeset viewer.