Changeset b3ea61f in git for Singular/LIB/central.lib
- Timestamp:
- Oct 6, 2008, 7:34:18 PM (15 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 40cb868fa73b4b919663ea7103e36b4df054e48e
- Parents:
- 886b0dae50b58b9f8b0863c63abf2f0ddacf9a26
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/central.lib
r886b0da rb3ea61f 1 1 /////////////////////////////////////////////////////////////////////////////// 2 version="$Id: central.lib,v 1. 5 2008-04-23 14:06:09 motsakExp $"2 version="$Id: central.lib,v 1.6 2008-10-06 17:33:57 Singular Exp $" 3 3 category="Noncommutative" 4 4 info=" … … 705 705 706 706 // check result of linearMapKernel 707 if( (typeof(T) == "int") and (T == 0) ) 707 if( typeof(T) == "int" ) 708 { 709 if( T == 0 ) 708 710 { 709 711 // All zeroes! Return Basis: … … 711 713 return( Basis ); 712 714 } 715 } 713 716 else 714 715 716 717 718 719 717 { 718 if( typeof(T) != "module" ) 719 { 720 ERROR( "Wrong output from the 'linearMapKernel' function!" ); 721 } 722 } 720 723 721 724 result = linearCombinations( Basis, T );
Note: See TracChangeset
for help on using the changeset viewer.