Changeset 4639d07 in git


Ignore:
Timestamp:
Aug 31, 2015, 5:52:02 PM (8 years ago)
Author:
Andreas Steenpass <steenpass@…>
Branches:
(u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
Children:
77c350666f82be7beff121c9c2e02094e0dd4e84
Parents:
9c8c05991ae275df479287d61b5f9afae8b8fe5c
git-author:
Andreas Steenpass <steenpass@mathematik.uni-kl.de>2015-08-31 17:52:02+02:00
git-committer:
Andreas Steenpass <steenpass@mathematik.uni-kl.de>2017-08-02 17:21:02+02:00
Message:
chg: use alias in parallel.lib, modular.lib, and assprimeszerodim.lib
Location:
Singular/LIB
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/assprimeszerodim.lib

    r9c8c05 r4639d07  
    100100
    101101/* The pTest for zeroRadical(), to be used in modular(). */
    102 static proc pTest_zeroRadical(string command, list args, ideal result, int p)
     102static proc pTest_zeroRadical(string command, alias list args,
     103    alias ideal result, int p)
    103104{
    104105   /* change to characteristic p */
     
    136137
    137138/* The finalTest for zeroRadical, to be used in modular(). */
    138 static proc finalTest_zeroRadical(string command, list args, ideal F)
     139static proc finalTest_zeroRadical(string command, alias list args,
     140    alias ideal F)
    139141{
    140142   int i;
     
    553555
    554556/* The pTest for assPrimes(), to be used in modular(). */
    555 static proc pTest_assPrimes(string command, list args, ideal F, int p)
     557static proc pTest_assPrimes(string command, alias list args, alias ideal F,
     558    int p)
    556559{
    557560   def br = basering;
  • Singular/LIB/modular.lib

    r9c8c05 r4639d07  
    313313}
    314314
    315 static proc pTest_default(string command, alias list args, def result, int p)
     315static proc pTest_default(string command, alias list args, alias def result,
     316    int p)
    316317{
    317318    return(1);
    318319}
    319320
    320 static proc finalTest_default(string command, alias list args, def result)
     321static proc finalTest_default(string command, alias list args,
     322    alias def result)
    321323{
    322324    return(1);
  • Singular/LIB/parallel.lib

    r9c8c05 r4639d07  
    153153}
    154154
    155 proc parallelWaitAll(def commands, alias list args, list #)
     155proc parallelWaitAll(alias def commands, alias list args, list #)
    156156"USAGE:   parallelWaitAll(commands, arguments[, timeout]); commands list or
    157157          string, arguments list, timeout int
     
    194194}
    195195
    196 proc parallelTestAND(def commands, alias list args, list #)
     196proc parallelTestAND(alias def commands, alias list args, list #)
    197197"USAGE:   parallelTestAND(commands, arguments[, timeout]); commands list or
    198198          string, arguments list, timeout int
     
    249249}
    250250
    251 proc parallelTestOR(def commands, alias list args, list #)
     251proc parallelTestOR(alias def commands, alias list args, list #)
    252252"USAGE:   parallelTestOR(commands, arguments[, timeout]); commands list or
    253253          string, arguments list, timeout int
Note: See TracChangeset for help on using the changeset viewer.