Changeset 389000 in git
- Timestamp:
- Feb 4, 2002, 3:23:18 PM (22 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 143730551d27a93040ea2cf6e367f92279ad2276
- Parents:
- 9b6b582ab79ae2b89b03ab2f5f7f3595a4cf2743
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ring.cc
r9b6b58 r389000 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ring.cc,v 1.1 79 2002-01-20 10:01:48 Singular Exp $ */4 /* $Id: ring.cc,v 1.180 2002-02-04 14:23:18 Singular Exp $ */ 5 5 6 6 /* … … 4019 4019 if (R->algring==NULL) 4020 4020 { 4021 WerrorS("could not create rational function coefficient field"); 4021 4022 goto rCompose_err; 4022 4023 } … … 4027 4028 else 4028 4029 { 4030 WerrorS("coefficient field must be described by `int` or `list`"); 4029 4031 goto rCompose_err; 4030 4032 } … … 4045 4047 while (i>=0) { omFree(R->names[i]); i--; } 4046 4048 omFree(R->names); 4049 Werror("var name %d must be `string`",i+1); 4047 4050 goto rCompose_err; 4048 4051 } … … 4051 4054 else 4052 4055 { 4056 WerrorS("variable must be given as `list`"); 4053 4057 goto rCompose_err; 4054 4058 } … … 4133 4137 R->block1[j] = R->N; 4134 4138 } 4135 else goto rCompose_err; 4139 else 4140 { 4141 Werror("ordering incomplete: size (%d) should be %d",R->block1[j],R->N); 4142 goto rCompose_err; 4143 } 4136 4144 } 4137 4145 } 4138 4146 else 4139 4147 { 4148 WerrorS("ordering must be given as `list`"); 4140 4149 goto rCompose_err; 4141 4150 } … … 4149 4158 else 4150 4159 { 4160 WerrorS("q-ideal must be given as `ideal`"); 4151 4161 goto rCompose_err; 4152 4162 }
Note: See TracChangeset
for help on using the changeset viewer.