Changeset 0ec43a in git
- Timestamp:
- Sep 10, 2008, 11:21:29 AM (15 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
- Children:
- a5da6f30272bf99d0d44c402d1eb3efcf7d79858
- Parents:
- 88d6313369cd3bc8cb8a65fa06a77e2f9a81dd0a
- Location:
- Singular
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/cntrlc.cc
r88d631 r0ec43a 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: cntrlc.cc,v 1.5 6 2008-03-19 17:44:29 Singular Exp $ */4 /* $Id: cntrlc.cc,v 1.57 2008-09-10 09:21:29 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT - interupt handling … … 428 428 int pid; 429 429 char buf[16]; 430 c har * args[4] = { "gdb", "Singularg", NULL, NULL };430 const char * args[4] = { "gdb", "Singularg", NULL, NULL }; 431 431 432 432 #ifdef HAVE_FEREAD -
Singular/extra.cc
r88d631 r0ec43a 2 2 * Computer Algebra System SINGULAR * 3 3 *****************************************/ 4 /* $Id: extra.cc,v 1.28 1 2008-08-07 18:08:36 levandovExp $ */4 /* $Id: extra.cc,v 1.282 2008-09-10 09:15:52 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: general interface to internals of Singular ("system" command) … … 444 444 return TRUE; 445 445 } 446 c har* errormsg;446 const char* errormsg; 447 447 if (h->Typ() == INT_CMD) 448 448 { -
Singular/feOpt.cc
r88d631 r0ec43a 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: feOpt.cc,v 1.2 2 2005-07-27 15:47:54Singular Exp $ */4 /* $Id: feOpt.cc,v 1.23 2008-09-10 09:15:52 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: Implementation of option buisness … … 293 293 #include <errno.h> 294 294 295 static c har* feOptAction(feOptIndex opt);296 c har* feSetOptValue(feOptIndex opt, char* optarg)295 static const char* feOptAction(feOptIndex opt); 296 const char* feSetOptValue(feOptIndex opt, char* optarg) 297 297 { 298 298 if (opt == FE_OPT_UNDEF) return "option undefined"; … … 328 328 } 329 329 330 c har* feSetOptValue(feOptIndex opt, int optarg)330 const char* feSetOptValue(feOptIndex opt, int optarg) 331 331 { 332 332 if (opt == FE_OPT_UNDEF) return "option undefined"; … … 342 342 } 343 343 344 static c har* feOptAction(feOptIndex opt)344 static const char* feOptAction(feOptIndex opt) 345 345 { 346 346 // do some special actions -
Singular/feOpt.h
r88d631 r0ec43a 4 4 * Computer Algebra System SINGULAR * 5 5 ****************************************/ 6 /* $Id: feOpt.h,v 1. 9 2006-05-29 14:27:53Singular Exp $ */6 /* $Id: feOpt.h,v 1.10 2008-09-10 09:15:51 Singular Exp $ */ 7 7 /* 8 8 * ABSTRACT: Declarations for working with Options … … 76 76 77 77 // opt->type must be feOptInt or feOptBool 78 c har* feSetOptValue(feOptIndex opt, int optarg);78 const char* feSetOptValue(feOptIndex opt, int optarg); 79 79 // for opt->type != feOptString, optarg is converted 80 80 // to an int 81 c har* feSetOptValue(feOptIndex opt, char* optarg);81 const char* feSetOptValue(feOptIndex opt, char* optarg); 82 82 83 83 void fePrintOptValues(); -
Singular/silink.cc
r88d631 r0ec43a 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: silink.cc,v 1.4 8 2008-09-10 08:52:57Singular Exp $ */4 /* $Id: silink.cc,v 1.49 2008-09-10 09:18:01 Singular Exp $ */ 5 5 6 6 /* … … 190 190 BOOLEAN res; 191 191 192 if (l->m == NULL) slInit(l, "");192 if (l->m == NULL) slInit(l, ((char*)"")); 193 193 194 194 if (SI_LINK_OPEN_P(l)) -
Singular/walk.cc
r88d631 r0ec43a 2 2 * Computer Algebra System SINGULAR * 3 3 *****************************************/ 4 /* $Id: walk.cc,v 1.1 3 2008-03-19 17:44:37Singular Exp $ */4 /* $Id: walk.cc,v 1.14 2008-09-10 09:21:29 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: Implementation of the Groebner walk … … 417 417 } 418 418 419 static void idString(ideal L, c har* st)419 static void idString(ideal L, const char* st) 420 420 { 421 421 int i, nL = IDELEMS(L); … … 5094 5094 Print("\n// Subroutine needs (%d) steps.", nwalk); 5095 5095 idElements(Glp, "last G in walk:"); 5096 PrintS("\n// ****************************************");5096 PrintS("\n// ****************************************"); 5097 5097 Print("\n// Perturb the original target vector (%d): ", nsteppert); 5098 5098 ivString(target_weight, "new target"); 5099 PrintS("\n// ****************************************\n");5099 PrintS("\n// ****************************************\n"); 5100 5100 */ 5101 5101 rChangeCurrRing(newRing);
Note: See TracChangeset
for help on using the changeset viewer.