Changeset 6c51de in git


Ignore:
Timestamp:
Feb 16, 2022, 3:57:44 PM (2 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
797a467b755669efb0ddb85d09db294cebaae15a
Parents:
d91ffbf79d85aa5b9ec9b84db8661467a03ad549
Message:
fix: Singular.jl#558
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/finvar.lib

    rd91ffb r6c51de  
    11//////////////////////////////////////////////////////////////////////////////
    2 version="version finvar.lib 4.2.1.0 Nov=2021 "; // $Id$
     2version="version finvar.lib 4.3.0.1 Feb_2022 "; // $Id$
    33category="Invariant theory";
    44info="
     
    18071807  { if (i<p^j)                         // finding an upper bound on i
    18081808    { for (k=0;k<j-1;k++)
    1809       { out=out+((i/p^k)%p)*a^k;       // finding how often p^k is contained in
     1809      { out=out+((i div p^k)%p)*a^k;   // finding how often p^k is contained in
    18101810      }                                // i
    1811       out=out+(i/p^(j-1))*a^(j-1);
     1811      out=out+(i div p^(j-1))*a^(j-1);
    18121812      if (defined(bool)==voice)
    18131813      { return((-1)*out);
Note: See TracChangeset for help on using the changeset viewer.