Show
Ignore:
Timestamp:
08/12/09 09:27:40 (15 years ago)
Author:
vbarta
Message:

returning shared pointers from epdf::marginal & epdf::condition; testsuite run leaks down from 8402 to 6510 bytes

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/base/bdmbase.cpp

    r502 r504  
    134134} 
    135135 
     136shared_ptr<mpdf> epdf::condition (const RV &rv) const { 
     137        it_warning ("Not implemented"); 
     138        return shared_ptr<mpdf>(); 
     139} 
     140 
     141shared_ptr<epdf> epdf::marginal (const RV &rv) const { 
     142        it_warning ("Not implemented"); 
     143        return shared_ptr<epdf>(); 
     144} 
     145 
    136146mat epdf::sample_m ( int N ) const { 
    137147        mat X = zeros ( dim, N );