Changeset 4639d07 in git
- Timestamp:
- Aug 31, 2015, 5:52:02 PM (8 years ago)
- 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
- Location:
- Singular/LIB
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/assprimeszerodim.lib
r9c8c05 r4639d07 100 100 101 101 /* The pTest for zeroRadical(), to be used in modular(). */ 102 static proc pTest_zeroRadical(string command, list args, ideal result, int p) 102 static proc pTest_zeroRadical(string command, alias list args, 103 alias ideal result, int p) 103 104 { 104 105 /* change to characteristic p */ … … 136 137 137 138 /* The finalTest for zeroRadical, to be used in modular(). */ 138 static proc finalTest_zeroRadical(string command, list args, ideal F) 139 static proc finalTest_zeroRadical(string command, alias list args, 140 alias ideal F) 139 141 { 140 142 int i; … … 553 555 554 556 /* The pTest for assPrimes(), to be used in modular(). */ 555 static proc pTest_assPrimes(string command, list args, ideal F, int p) 557 static proc pTest_assPrimes(string command, alias list args, alias ideal F, 558 int p) 556 559 { 557 560 def br = basering; -
Singular/LIB/modular.lib
r9c8c05 r4639d07 313 313 } 314 314 315 static proc pTest_default(string command, alias list args, def result, int p) 315 static proc pTest_default(string command, alias list args, alias def result, 316 int p) 316 317 { 317 318 return(1); 318 319 } 319 320 320 static proc finalTest_default(string command, alias list args, def result) 321 static proc finalTest_default(string command, alias list args, 322 alias def result) 321 323 { 322 324 return(1); -
Singular/LIB/parallel.lib
r9c8c05 r4639d07 153 153 } 154 154 155 proc parallelWaitAll( def commands, alias list args, list #)155 proc parallelWaitAll(alias def commands, alias list args, list #) 156 156 "USAGE: parallelWaitAll(commands, arguments[, timeout]); commands list or 157 157 string, arguments list, timeout int … … 194 194 } 195 195 196 proc parallelTestAND( def commands, alias list args, list #)196 proc parallelTestAND(alias def commands, alias list args, list #) 197 197 "USAGE: parallelTestAND(commands, arguments[, timeout]); commands list or 198 198 string, arguments list, timeout int … … 249 249 } 250 250 251 proc parallelTestOR( def commands, alias list args, list #)251 proc parallelTestOR(alias def commands, alias list args, list #) 252 252 "USAGE: parallelTestOR(commands, arguments[, timeout]); commands list or 253 253 string, arguments list, timeout int
Note: See TracChangeset
for help on using the changeset viewer.