Changeset f0168a5 in git for Singular/ipshell.cc
- Timestamp:
- Dec 15, 2011, 3:37:04 AM (12 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- ee668eff445bb4cf7e96d94673c39f627a30d232
- Parents:
- 81845eb574ce4e246556ba7885ecb3a9be8222a9
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-12-15 03:37:04+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-01-06 21:09:33+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ipshell.cc
r81845eb rf0168a5 2821 2821 #endif 2822 2822 2823 BOOLEAN jjRESULTANT(leftv res, leftv u, leftv v, leftv w) 2824 { 2823 2825 #ifdef HAVE_FACTORY 2824 BOOLEAN jjRESULTANT(leftv res, leftv u, leftv v, leftv w)2825 {2826 2826 res->data=singclap_resultant((poly)u->CopyD(),(poly)v->CopyD(), 2827 2827 (poly)w->CopyD(), currRing); 2828 2828 return errorreported; 2829 } 2830 BOOLEAN jjCHARSERIES(leftv res, leftv u) 2831 { 2832 #if 1 2829 #else 2833 2830 Werror("Sorry: not yet re-factored: see libpolys/polys/clapsing.cc"); 2834 2831 return FALSE; 2835 #else 2832 #endif 2833 } 2834 2835 BOOLEAN jjCHARSERIES(leftv res, leftv u) 2836 { 2837 #if defined(HAVE_FACTORY) && defined(HAVE_LIBFAC) 2836 2838 res->data=singclap_irrCharSeries((ideal)u->Data(), currRing); 2837 2839 return (res->data==NULL); 2840 #else 2841 Werror("Sorry: not yet re-factored: see libpolys/polys/clapsing.cc"); 2842 return FALSE; 2838 2843 #endif 2839 2844 } 2840 #endif2841 2845 2842 2846 // from semic.cc
Note: See TracChangeset
for help on using the changeset viewer.