Changeset 443
- Timestamp:
- Dec 15, 2005, 4:28:37 PM (17 years ago)
- Location:
- trunk/lib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/random/random.h
r425 r443 134 134 inline Discrete(void) { rng_=RNG::instance(); } 135 135 136 inline virtual ~Discrete(void) { } 137 136 138 /// 137 139 /// Set the seed to \a s in the underlying rng. If \a s is zero, a … … 179 181 /// @brief Destructor 180 182 /// 181 virtual~DiscreteGeneral(void);183 ~DiscreteGeneral(void); 182 184 183 185 /// … … 311 313 inline Continuous(void) { rng_=RNG::instance(); } 312 314 315 inline virtual ~Continuous(void) { } 316 313 317 /// 314 318 /// Set the seed to \a s in the underlying rng. If \a s is zero, a … … 373 377 /// @brief Destructor 374 378 /// 375 virtual~ContinuousGeneral(void);379 ~ContinuousGeneral(void); 376 380 377 381 /// -
trunk/lib/statistics/Kernel.cc
r389 r443 7 7 namespace regression{ 8 8 9 Kernel::Kernel(void)10 {11 }12 13 9 } // of namespace regression 14 10 } // of namespace statistics -
trunk/lib/statistics/Kernel.h
r411 r443 19 19 /// Constructor 20 20 /// 21 Kernel(); 21 inline Kernel(void) {}; 22 23 virtual ~Kernel(void) {}; 22 24 23 25 /// -
trunk/lib/statistics/KernelBox.h
r411 r443 21 21 /// Constructor 22 22 /// 23 KernelBox( );23 KernelBox(void); 24 24 25 25 ///
Note: See TracChangeset
for help on using the changeset viewer.