Changeset 411


Ignore:
Timestamp:
Nov 30, 2005, 5:20:40 PM (18 years ago)
Author:
Jari Häkkinen
Message:

Move todo items to trac.

Location:
trunk
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/namespaces.doxygen

    r391 r411  
    1919///
    2020/// @brief Random number distributions
    21 ///
    22 /// @todo seed
    2321///
    2422
  • trunk/lib/random/random.h

    r389 r411  
    286286    /// [0,n-1].
    287287    ///
    288     /// @todo exception should be thrown, when n is out of range
    289     ///
    290288    DiscreteUniform(const u_long n);
    291289     
     
    302300    /// inclusive. All integers in the range [0,n-1] are equally
    303301    /// likely.
    304     ///
    305     /// @todo exception should be thrown, when n is out of range
    306302    ///
    307303    inline u_long operator()(const u_long n) const
  • trunk/lib/statistics/AveragerWeighted.h

    r400 r411  
    1717  ///
    1818  /// @see Averager
    19   ///
    20   /// @todo Check the implementation. Add link to peters
    21   /// stats_weighted.tex document. Make Averager and Averager*
    22   /// interface more coherent. Functions should fulfill the following:
    23   /// 1) all weights equal to unity yiels same as Averager 2)
    24   /// Rescaling all weights yields no difference 3) adding a data
    25   /// point with weight zero yields no difference 4) add(x,w) followed
    26   /// by add(x,w) is equivalent to add(x,2w). These conditions should
    27   /// be tested in test program.
    2819  ///
    2920  class AveragerWeighted
  • trunk/lib/statistics/Kernel.h

    r389 r411  
    1010  /// Abstract Base Class for calculating the weights in a more
    1111  /// general way than classical rectangular windows.
    12   ///
    13   /// @todo move to theplu::statistics::regression namespace
    1412  ///
    1513
  • trunk/lib/statistics/KernelBox.h

    r389 r411  
    1313  ///
    1414  /// Class for KernelBox a.k.a. rectangular window.
    15   ///
    16   /// @todo move to theplu::statistics::regression namespace
    1715  ///
    1816  class KernelBox : public Kernel
  • trunk/lib/statistics/KernelTriCube.h

    r389 r411  
    1414  ///
    1515  /// Class for TriCubal kernel.
    16   ///
    17   /// @todo move to theplu::statistics::regression namespace
    1816  ///
    1917  class KernelTriCube : public Kernel
  • trunk/lib/statistics/Local.h

    r383 r411  
    7171    /// function in used Regression.
    7272    ///
    73     /// @todo change interface to not send in stream, but rather use a
    74     /// << operator for sending to strem
    7573    void fit(std::ostream& s, const double fraction, const u_int step_size=1);
    7674
  • trunk/lib/utility/Exception.h

    r389 r411  
    1212  ///
    1313  /// @brief Class
    14   ///
    15   /// @todo document
    1614  ///
    1715  class IO_error : public std::runtime_error
  • trunk/lib/utility/stl_utility.h

    r341 r411  
    5151  /// outcome of unexpected events will change.
    5252  ///
    53   /// @todo Change the implementation of this function to follow C/C++
    54   /// style treatment of files and streams.
    55   ///
    5653  bool read_to_double(std::istream&, std::vector<double>&);
    5754
     
    6865  /// future. The overall functionality will be the same but the
    6966  /// outcome of unexpected events will change.
    70   ///
    71   /// @todo Change the implementation of this function to follow C/C++
    72   /// style treatment of files and streams.
    7367  ///
    7468  bool read_to_int(std::istream&, std::vector<int>&);
Note: See TracChangeset for help on using the changeset viewer.