Changeset 5faa0e1 in git
- Timestamp:
- Sep 11, 2014, 7:45:04 PM (9 years ago)
- Branches:
- (u'spielwiese', 'f6c3dc58b0df4bd712574325fe76d0626174ad97')
- Children:
- 7df5dbe44d6ad4e3b6b80e8f74c0a85ec6452b3e
- Parents:
- 922890d232f31c404a7e6e8fb0b4328c0bad1252
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-09-11 19:45:04+02:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-09-15 17:39:46+02:00
- Files:
-
- 3 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/nc/old.gring.cc
r922890 r5faa0e1 2864 2864 if (CN != NULL) /* create matrix C = CN * Id */ 2865 2865 { 2866 if (!p_IsConstant(CN,curr)) 2867 { 2868 Werror("Incorrect input : non-constants are not allowed as coefficients (first argument)"); 2869 return TRUE; 2870 } 2871 assume(p_IsConstant(CN,curr)); 2872 2866 2873 nN = p_GetCoeff(CN, curr); 2867 2874 if (n_IsZero(nN, curr)) … … 2911 2918 qN = NULL; 2912 2919 else 2920 { 2921 if (!p_IsConstant(MATELEM(CC,i,j),curr)) 2922 { 2923 Werror("Incorrect input : non-constants are not allowed as coefficients (first argument at [%d, %d])", i, j); 2924 return TRUE; 2925 } 2926 assume(p_IsConstant(MATELEM(CC,i,j),curr)); 2913 2927 qN = p_GetCoeff(MATELEM(CC,i,j),curr); 2928 } 2929 2914 2930 2915 2931 if ( qN == NULL ) /* check the consistency: Cij!=0 */
Note: See TracChangeset
for help on using the changeset viewer.