Changeset 037ce1 in git


Ignore:
Timestamp:
Apr 29, 2015, 5:52:12 PM (9 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
e2310ce3f8cd3afd2223c119a756d66565efcf3c
Parents:
d4360045a1888d9d0eeb38f2be28c531b4830a3c
Message:
do not extend intvec of different length with 0 for ==, <>
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    rd43600 r037ce1  
    381381    case EQUAL_EQUAL:
    382382    case NOTEQUAL: /* negation handled by jjEQUAL_REST */
     383      if((r==0)&&(a->rows()!=b->rows()))
     384      res->data  = (char *) 0;
     385      else
    383386      res->data  = (char *) (r==0);
    384387      break;
Note: See TracChangeset for help on using the changeset viewer.