Changeset 5b6159 in git


Ignore:
Timestamp:
Jul 22, 1997, 11:16:10 AM (27 years ago)
Author:
Jens Schmidt <schmidt@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
d5c03ccbe664598b9ceb86fd624645898827362f
Parents:
e68db8293eda61e3546da7c8b0a73e149e59137d
Message:
	* sm_sparsemod.cc (internalSparsemod): sparsemod() renamed to
	  internalSparsemod()
	  (sparsemod): new function which is a simple wrapper around
	  internalSparsemod()


git-svn-id: file:///usr/local/Singular/svn/trunk@559 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/sm_sparsemod.cc

    re68db8 r5b6159  
    11/* emacs edit mode for this file is -*- C++ -*- */
    2 /* $Id: sm_sparsemod.cc,v 1.1 1997-07-19 08:40:49 schmidt Exp $ */
     2/* $Id: sm_sparsemod.cc,v 1.2 1997-07-22 09:16:10 schmidt Exp $ */
    33
    44//{{{ docu
     
    315315
    316316// In sparsemod testen, ob G[levU] | u und G[levU] | v ///
    317 CanonicalForm
    318 sparsemod( const CanonicalForm & F, const CanonicalForm & G )
     317static CanonicalForm
     318internalSparsemod( const CanonicalForm & F, const CanonicalForm & G )
    319319{
    320320  // On(SW_USE_EZGCD );
     
    671671
    672672}
     673
     674CanonicalForm
     675sparsemod( const CanonicalForm & F, const CanonicalForm & G )
     676{
     677    Off( SW_USE_SPARSEMOD );
     678    CanonicalForm result = internalSparsemod( F, G );
     679    On( SW_USE_SPARSEMOD );
     680    return result;
     681}
Note: See TracChangeset for help on using the changeset viewer.