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/size_generator.h

    r717 r1064  
    2121class size_generator : public generator { 
    2222private: 
    23         int step; 
    24         int sz; 
     23    int step; 
     24    int sz; 
    2525 
    2626public: 
    27         size_generator() : step ( 7 ), sz ( step ) { } 
     27    size_generator() : step ( 7 ), sz ( step ) { } 
    2828 
    29         itpp::mat next(); 
     29    itpp::mat next(); 
    3030 
    31         //! Load from structure with elements: 
    32         //!  \code 
    33         //! { size = 7; // size (rows == cols) of the first generated matrix 
    34         //!   step = 7; // how many times to increase the generated matrix in every iteration 
    35         //! } 
    36         //! \endcode 
    37         //! Both elements are optional, with defaults as shown. 
    38         void from_setting ( const Setting &set ); 
     31    //! Load from structure with elements: 
     32    //!  \code 
     33    //! { size = 7; // size (rows == cols) of the first generated matrix 
     34    //!   step = 7; // how many times to increase the generated matrix in every iteration 
     35    //! } 
     36    //! \endcode 
     37    //! Both elements are optional, with defaults as shown. 
     38    void from_setting ( const Setting &set ); 
    3939}; 
    4040