Changeset 411e002 in git


Ignore:
Timestamp:
Apr 4, 2011, 5:35:56 PM (13 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38077648e7239f98078663eb941c3c979511150a')
Children:
0fb5d0c7780acf58819ceb6dd096be46e796f106
Parents:
f1154895ee15b4df40c8453adc985444e66aebfd
Message:
format

git-svn-id: file:///usr/local/Singular/svn/trunk@14092 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/MinorInterface.cc

    rf115489 r411e002  
    9494  int collectedMinors = 0;
    9595  int characteristic = 0; if (currRing != 0) characteristic = rChar(currRing);
    96  
     96
    9797  /* the ideal to be returned: */
    9898  ideal iii = idInit(1, 0);
     
    121121  idDelete(&iii);
    122122  return jjj;
    123 }                 
     123}
    124124
    125125/* special implementation for the case that the matrix has non-number,
     
    131131                          const int k, const char* algorithm,
    132132                          const ideal i, const bool allDifferent)
    133 {       
     133{
    134134  /* setting up a MinorProcessor for matrices with polynomial entries: */
    135135  PolyMinorProcessor mp;
     
    354354                              const int cacheStrategy, const int cacheN,
    355355                              const int cacheW, const bool allDifferent)
    356 { 
     356{
    357357  /* setting up a MinorProcessor for matrices with polynomial entries: */
    358358  PolyMinorProcessor mp;
  • Singular/MinorProcessor.h

    rf115489 r411e002  
    198198    */
    199199    MinorProcessor ();
    200    
     200
    201201    /**
    202202     * A destructor for deleting an instance. We must make this destructor
     
    290290/*! \class IntMinorProcessor
    291291    \brief Class IntMinorProcessor is derived from class MinorProcessor.
    292    
     292
    293293    This class implements the special case of integer matrices.
    294294    \author Frank Seelisch, http://www.mathematik.uni-kl.de/~seelisch
     
    301301    */
    302302    int* _intMatrix;
    303    
     303
    304304    /**
    305305    * A method for retrieving the matrix entry.
     
    362362    * @see MinorProcessor::getMinorPrivateLaplace (const int k,
    363363                                                   const MinorKey& mk,
    364                                                    const bool multipleMinors, 
     364                                                   const bool multipleMinors,
    365365                                                   Cache<MinorKey,
    366366                                                         IntMinorValue>& c,
     
    551551/*! \class PolyMinorProcessor
    552552    \brief Class PolyMinorProcessor is derived from class MinorProcessor.
    553    
     553
    554554    This class implements the special case of polynomial matrices.
    555555    \author Frank Seelisch, http://www.mathematik.uni-kl.de/~seelisch
     
    562562    */
    563563    poly* _polyMatrix;
    564    
     564
    565565    /**
    566566    * A method for retrieving the matrix entry.
     
    617617    PolyMinorValue getMinorPrivateLaplace (const int k, const MinorKey& mk,
    618618                                           const ideal& iSB);
    619    
     619
    620620    /**
    621621    * A method for computing the value of a minor, without using a cache.<br>
Note: See TracChangeset for help on using the changeset viewer.