Changeset 3443


Ignore:
Timestamp:
09/02/10 16:41:40 (17 months ago)
Author:
saunders
Message:

small tweaks

Location:
trunk/linbox
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/linbox/examples/rank.C

    r3145 r3443  
    3636        long unsigned int r; 
    3737 
    38         if (argc == 2) { // rank over the integers. 
     38        if (argc == 2) { // rank over the rational numbers. 
    3939 
    4040           /* We could pick a random prime and work mod that prime, But the point here  
    4141           is that the rank function in solutions/ handles that issue.  Our matrix here  
    42            is an integer matrix and our concept is that we are getting the rank of that  
     42           is an integer or rational matrix and our concept is that we are getting the rank of that  
    4343           matrix by some blackbox magic inside linbox. 
    4444           */ 
  • trunk/linbox/linbox/blackbox/blas-blackbox.h

    r3405 r3443  
    298298 
    299299                const BlasBlackbox<MultiModDouble>& operator=(const BlasBlackbox<MultiModDouble> & A){                   
    300                         //_F   = A._F;           
     300                        _F   = A._F;             
    301301                        _row = A._row; 
    302302                        _col = A._col; 
     
    393393        protected: 
    394394                 
    395                 const MultiModDouble                 &_F;   
     395                MultiModDouble                 _F;   
    396396                const std::vector<MatrixDomain<Modular<double> > >   _MD;  
    397397                size_t                  _row,_col; 
  • trunk/linbox/linbox/field/PID-integer.h

    r3360 r3443  
    4747 
    4848        public: 
     49 
     50                //PID_integer(){} 
     51                //PID_integer& operator=(PID_integer& K) { return *this; } 
    4952 
    5053                typedef integer Element; 
  • trunk/linbox/linbox/field/param-fuzzy.h

    r3291 r3443  
    103103                 */ 
    104104                Element &init (Element &x, const integer &y = 0) const 
    105                         { return x = static_cast<double> (y); } 
     105                        { return x = y; } 
     106                        //{ return x = static_cast<double> (y); } 
    106107                Element &init (Element &x, const double &y) const 
    107108                        { return x = y; } 
     
    115116                 */ 
    116117                integer &convert (integer &x, const Element &y) const 
    117                         { return x = static_cast<integer> (y); } 
     118                        { return x = y; } 
    118119                double &convert (double &x, const Element &y) const 
    119120                        { return x = y; } 
Note: See TracChangeset for help on using the changeset viewer.