Changeset b45d97 in git for Singular/clapsing.cc
- Timestamp:
- Apr 17, 1999, 2:30:24 PM (24 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- a79a12873c307b35db5462af26c49d5b594af644
- Parents:
- 458bd67f21def86763df6137584fe9c0d9fa9a66
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/clapsing.cc
r458bd6 rb45d97 3 3 * Computer Algebra System SINGULAR * 4 4 ****************************************/ 5 // $Id: clapsing.cc,v 1.4 8 1999-03-15 16:18:51Singular Exp $5 // $Id: clapsing.cc,v 1.49 1999-04-17 12:30:16 Singular Exp $ 6 6 /* 7 7 * ABSTRACT: interface between Singular and factory … … 133 133 StringSetS( tag ); \ 134 134 napWrite( f ); \ 135 PrintS(StringAppend ("\n"));135 PrintS(StringAppendS("\n")); 136 136 // CanonicalForm f, represents transcendent extension 137 137 #define FACTORY_CFTROUT_POLY( tag, f ) \ … … 140 140 StringSetS( tag ); \ 141 141 napWrite( F ); \ 142 PrintS(StringAppend ("\n")); \142 PrintS(StringAppendS("\n")); \ 143 143 napDelete( &F ); \ 144 144 } … … 149 149 StringSetS( tag ); \ 150 150 napWrite( F ); \ 151 PrintS(StringAppend ("\n")); \151 PrintS(StringAppendS("\n")); \ 152 152 napDelete( &F ); \ 153 153 } … … 609 609 //#ifdef LDEBUG 610 610 //number cn=(number)c; 611 //StringSet(""); nWrite(nt); StringAppend (" ==> ");612 //nWrite(cn);PrintS(StringAppend ("\n"));611 //StringSet(""); nWrite(nt); StringAppendS(" ==> "); 612 //nWrite(cn);PrintS(StringAppendS("\n")); 613 613 //#endif 614 614 } … … 928 928 if (i<offs) 929 929 { 930 StringAppend (currRing->parameter[i]);930 StringAppendS(currRing->parameter[i]); 931 931 } 932 932 else 933 933 { 934 StringAppend (currRing->names[i-offs]);934 StringAppendS(currRing->names[i-offs]); 935 935 } 936 936 Li++; 937 937 cnt--; 938 938 if(cnt==0) break; 939 StringAppend (",");939 StringAppendS(","); 940 940 if(! Li.hasItem()) break; 941 941 } … … 946 946 if (i<offs) 947 947 { 948 StringAppend (currRing->parameter[i]);948 StringAppendS(currRing->parameter[i]); 949 949 } 950 950 else 951 951 { 952 StringAppend (currRing->names[i-offs]);952 StringAppendS(currRing->names[i-offs]); 953 953 } 954 954 cnt--; 955 955 if(cnt==0) break; 956 StringAppend (",");957 } 958 } 959 return mstrdup(StringAppend (""));956 StringAppendS(","); 957 } 958 } 959 return mstrdup(StringAppendS("")); 960 960 #else 961 961 return NULL;
Note: See TracChangeset
for help on using the changeset viewer.