Show
Ignore:
Timestamp:
11/25/09 12:14:38 (15 years ago)
Author:
mido
Message:

ASTYLER RUN OVER THE WHOLE LIBRARY, JUPEE

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/stat/discrete.h

    r730 r737  
    6262        //! Get next active vector, call ONLY after first_vector()! 
    6363        const vec& next_vec(); 
    64          
     64 
    6565        //! return active vector, call ONLY after first_vector()! 
    66         const vec& act_vec(){return actvec;}; 
    67          
     66        const vec& act_vec() { 
     67                return actvec; 
     68        }; 
     69 
    6870        //! \todo to je asi navic .. v predkovi! 
    6971        ivec nearest_point ( const vec &val ); 
     
    143145        //! constructor function fills values by calling function \c f , double f(vec&), given by a pointer 
    144146        void set_values ( double ( *evalptr ) ( const vec& ) ); 
    145          
     147 
    146148        //! constructor function fills values by calling function \c f , double f(vec&), given by a pointer 
    147         void set_values ( const epdf &ep); 
    148          
     149        void set_values ( const epdf &ep ); 
     150 
    149151        //! get value nearest to the given point 
    150152        double nearest_val ( const vec &val ) { 
     
    155157                return vec_1 ( nearest_val ( val ) ); 
    156158        } 
    157         const vec & _values() const { return values; } 
     159        const vec & _values() const { 
     160                return values; 
     161        } 
    158162}; 
    159163UIREGISTER ( grid_fnc );