Changeset 7fbd9a in git


Ignore:
Timestamp:
Feb 8, 2010, 12:48:42 PM (13 years ago)
Author:
Frank Seelisch <seelisch@…>
Branches:
(u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
Children:
a72f08d59efd7d154e8d1260d05e0dcb2eda4da0
Parents:
23d5271f853220ad707dd531a5e55c1e2344691c
Message:
default values for minor-computations with cache
(suggestion of Gert-Martin as of February 5, 2010)

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

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    r23d5271 r7fbd9a  
    60046004       If algorithm is present, it must be one of "Bareiss", "bareiss",
    60056005       "Laplace", "laplace", "Cache", "cache". In the cases "Cache" and
    6006        "cache" two more arguments are expected, determining how many entries
     6006       "cache" two more arguments may be given, determining how many entries
    60076007       the cache may have at most, and how many cached monomials there are at
    60086008       most. (Cached monomials are counted over all cached polynomials.)
     6009       If these two additional arguments are not provided, 200 and 100000
     6010       will be used as defaults.
    60096011  */
    60106012  matrix m;
     
    61426144      && (noCacheMinors || noCacheMonomials))
    61436145  {
    6144     WerrorS("Expected two more int arguments after algorithm 'C/cache' .");
    6145     return TRUE;
     6146    cacheMinors = 200;
     6147    cacheMonomials = 100000;
    61466148  }
    61476149
Note: See TracChangeset for help on using the changeset viewer.