00001 //#if defined(__GNUC__) && defined(GCC_PCH) 00002 // #include "aux.hpp" 00003 //#else 00004 #include "DensityTreeMixturePdf.hpp" 00005 //#endif 00006 00007 using namespace indii::ml::aux; 00008 00009 DensityTreeMixturePdf::DensityTreeMixturePdf() : 00010 StandardMixturePdf<DensityTreePdf>(0) { 00011 // 00012 } 00013 00014 DensityTreeMixturePdf::DensityTreeMixturePdf(const unsigned int N) : 00015 StandardMixturePdf<DensityTreePdf>(N) { 00016 // 00017 } 00018 00019 DensityTreeMixturePdf::~DensityTreeMixturePdf() { 00020 // 00021 } 00022 00023 void DensityTreeMixturePdf::setDimensions(const unsigned int N, 00024 const bool preserve) { 00025 assert (false); 00026 } 00027
1.5.2