Changeset 162 for bdm/math

Show
Ignore:
Timestamp:
09/04/08 20:27:01 (16 years ago)
Author:
smidl
Message:

opravy a dokumentace

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • bdm/math/libDC.cpp

    r141 r162  
    183183 
    184184ldmat& ldmat::operator *= ( double x ) { 
    185         int i; 
    186         for ( i=0;i<D.length();i++ ){D( i )*=x;}; 
     185        D*=x; 
    187186        return *this; 
    188187}