Show
Ignore:
Timestamp:
01/11/10 22:55:57 (14 years ago)
Author:
mido
Message:

abstract methods restored wherever they are meaningful
macros NOT_IMPLEMENTED and NOT_IMPLEMENTED_VOID defined to make sources shorter
emix::set_parameters and mmix::set_parameters removed, corresponding acces methods created and the corresponding validate methods improved appropriately
some compilator warnings were avoided
and also a few other things cleaned up

Files:
1 modified

Legend:

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

    r760 r766  
    8181                                inds ( j ) = gridsizes ( j ) - 1; 
    8282                        else { 
    83                                 inds ( j ) = ::round ( val ( j ) - ranges ( j ) ( 0 ) / steps ( j ) ); 
     83                                inds ( j ) = (int) ::round ( val ( j ) - ranges ( j ) ( 0 ) / steps ( j ) ); 
    8484                        } 
    8585                }