kernelforwardbackwardsmoothermodel.hpp

来自「dysii is a C++ library for distributed p」· HPP 代码 · 共 43 行

HPP
43
字号
#ifndef INDII_ML_FILTER_KERNELFORWARDBACKWARDSMOOTHERMODEL_HPP#define INDII_ML_FILTER_KERNELFORWARDBACKWARDSMOOTHERMODEL_HPP#include "ParticleFilterModel.hpp"namespace indii {  namespace ml {    namespace filter {/** * KernelForwardBackwardSmoother compatible model. * * @author Lawrence Murray <lawrence@indii.org> * @version $Rev: 490 $ * @date $Date: 2008-07-31 17:20:07 +0100 (Thu, 31 Jul 2008) $ * * @param T The type of time. *  * @see indii::ml::filter for general usage guidelines. */template <class T = unsigned int>class KernelForwardBackwardSmootherModel :    public virtual ParticleFilterModel<T> {public:  /**   * Destructor.   */  virtual ~KernelForwardBackwardSmootherModel() = 0;};    }  }}template <class T>indii::ml::filter::KernelForwardBackwardSmootherModel<T>::~KernelForwardBackwardSmootherModel() {  //}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?