Show
Ignore:
Timestamp:
06/09/10 14:00:40 (14 years ago)
Author:
mido
Message:

astyle applied all over the library

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/tests/stresssuite/additive_generator.h

    r717 r1064  
    2121class additive_generator : public generator { 
    2222private: 
    23         itpp::mat a; 
    24         itpp::mat v2; 
    25         double lambda; 
     23    itpp::mat a; 
     24    itpp::mat v2; 
     25    double lambda; 
    2626 
    2727public: 
    28         additive_generator() : lambda ( 0.5 ) { } 
     28    additive_generator() : lambda ( 0.5 ) { } 
    2929 
    30         itpp::mat next(); 
     30    itpp::mat next(); 
    3131 
    32         //! Load from structure with elements: 
    33         //!  \code 
    34         //! { size = 7; // size (rows == cols) of the generated matrix 
    35         //!   lambda = 0.5; // weight of the added vector 
    36         //! } 
    37         //! \endcode 
    38         //! size is mandatory, lambda optional (with default as shown). 
    39         void from_setting ( const Setting &set ); 
     32    //! Load from structure with elements: 
     33    //!  \code 
     34    //! { size = 7; // size (rows == cols) of the generated matrix 
     35    //!   lambda = 0.5; // weight of the added vector 
     36    //! } 
     37    //! \endcode 
     38    //! size is mandatory, lambda optional (with default as shown). 
     39    void from_setting ( const Setting &set ); 
    4040}; 
    4141