Changeset 1f9a84 in git for Singular/LIB/poly.lib


Ignore:
Timestamp:
May 5, 2011, 2:19:42 PM (13 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
750e704356a16e0d46bd540f5fe07a831a40cded
Parents:
d44974deb309558594f4d26a7d11c490304c77cf
Message:
more int division from the manual

git-svn-id: file:///usr/local/Singular/svn/trunk@14203 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/poly.lib

    rd44974d r1f9a84  
    809809        {
    810810           q=gcd(p,i[k]);
    811            p=p/q;
     811           p=p div q;
    812812           p=p*i[k];
    813813        }
     
    11881188  }
    11891189  N = N[2..size(N)]; // Deletes the zero added in the definition of T
    1190   intmat M=intmat(N,(size(N)/n),n); // Conversion from vector to matrix
     1190  intmat M=intmat(N,(size(N) div n),n); // Conversion from vector to matrix
    11911191  return (M);
    11921192}
Note: See TracChangeset for help on using the changeset viewer.