Changeset f9ffa1 in git
- Timestamp:
- Feb 13, 2009, 10:16:27 AM (14 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 6719771b2432b6b9921cf8f82aec25750ca176b8
- Parents:
- 7ef4c2b8c31bc2f9174394d9ecaeb2e409b9e587
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ipshell.cc
r7ef4c2 rf9ffa1 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ipshell.cc,v 1.20 1 2009-01-07 15:04:33Singular Exp $ */4 /* $Id: ipshell.cc,v 1.202 2009-02-13 09:16:27 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: … … 2021 2021 goto rCompose_err; 2022 2022 } 2023 rNameCheck(R);2024 2023 // ------------------------ ORDER ------------------------------ 2025 2024 if (L->m[2].Typ()==LIST_CMD) … … 2241 2240 goto rCompose_err; 2242 2241 } 2242 rNameCheck(R); 2243 2243 // ------------------------ Q-IDEAL ------------------------ 2244 2244 rComplete(R); … … 4853 4853 4854 4854 /* check names and parameters for conflicts ------------------------- */ 4855 { 4856 int i,j; 4857 for(i=0;i<R->P; i++) 4858 { 4859 for(j=0;j<R->N;j++) 4860 { 4861 if (strcmp(R->parameter[i],R->names[j])==0) 4862 { 4863 Werror("parameter %d conflicts with variable %d",i+1,j+1); 4864 goto rInitError; 4865 } 4866 } 4867 } 4868 } 4869 rNameCheck(R); 4855 rNameCheck(R); // conflicting variables will be renamed 4870 4856 /* ordering -------------------------------------------------------------*/ 4871 4857 if (rSleftvOrdering2Ordering(ord, R))
Note: See TracChangeset
for help on using the changeset viewer.