Changeset 5 for libDC.cpp

Show
Ignore:
Timestamp:
01/18/08 18:43:51 (17 years ago)
Author:
smidl
Message:

RV

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • libDC.cpp

    r2 r5  
    1717class LD 
    1818{ 
    19 public: 
     19        public: 
    2020 
    21   /** 
    22   * Perfroms a dyadic update $V = V + w v v'$ 
    23   * @param  v Vector forming the dyad to be added 
    24   * @param  w weight of the updating dysad 
    25   */ 
    26   void ldupdt (vec v, double w = 1.0 ); 
     21                /** 
     22                * Perfroms a dyadic update $V = V + w v v'$ 
     23                * @param  v Vector forming the dyad to be added 
     24                * @param  w weight of the updating dysad 
     25                */ 
     26                void ldupdt ( vec v, double w = 1.0 ); 
    2727 
    28    //! Construct by copy of L and D. 
    29    LD(mat L, vec D); 
    30    //! Construct by decomposition of full matrix V. 
    31    LD(mat V); 
     28                //! Construct by copy of L and D. 
     29                LD ( mat L, vec D ); 
     30                //! Construct by decomposition of full matrix V. 
     31                LD ( mat V ); 
    3232 
    33 protected: 
    34   vec D; 
    35   mat L; 
     33        protected: 
     34                vec D; 
     35                mat L; 
    3636 
    3737}; 
    3838 
    39 LD::LD(const mat exL, const vec exD) { 
    40  D = exD; 
    41  L = exL; 
     39LD::LD ( const mat exL, const vec exD ) 
     40{ 
     41        D = exD; 
     42        L = exL; 
    4243} 
    4344 
    44 LD::LD(const mat V) { 
    45  ; //not implemneted yet 
     45LD::LD ( const mat V ) 
     46{ 
     47        ; //not implemneted yet 
    4648} 
    4749 
    48 void LD::ldupdt(vec v, double w ) { 
    49 printf("not implemented"); //TODO: VS 
     50void LD::ldupdt ( vec v, double w ) 
     51{ 
     52        printf ( "not implemented" ); //TODO: VS 
    5053}