00001 #ifndef _ALL_FILTERS 00002 #define _ALL_FILTERS 00003 00004 /* 00005 * Bayes++ the Bayesian Filtering Library 00006 * Copyright (c) 2002 Michael Stevens 00007 * See accompanying Bayes++.htm for terms and conditions of use. 00008 * 00009 * $Id: allFilters.hpp 562 2006-04-05 20:46:23 +0200 (Wed, 05 Apr 2006) mistevens $ 00010 */ 00011 00012 /* 00013 * Bayesian Filters. 00014 * A Bayesian filters as an Abstract class. 00015 * All filters have similar structure with vary algorthms and numerical properties 00016 */ 00017 00018 #include "UDFlt.hpp" 00019 #include "CIFlt.hpp" 00020 #include "unsFlt.hpp" 00021 #include "covFlt.hpp" 00022 #include "infFlt.hpp" 00023 #include "infRtFlt.hpp" 00024 #include "itrFlt.hpp" 00025 #include "SIRFlt.hpp" 00026 #include "models.hpp" 00027 00028 #endif
1.4.6