Ignore:
Timestamp:
Aug 31, 2006, 10:52:02 AM (17 years ago)
Author:
Jari Häkkinen
Message:

Removed gslapi namespace and put the code into utility namespace.
Move #ifndef _header_ idiom to top of touched header files.
Removed unneccesary #includes, and added needed #includes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/c++_tools/statistics/Naive.h

    r586 r616  
    1 // $Id$
    2 
    31#ifndef _theplu_statistics_regression_naive_
    42#define _theplu_statistics_regression_naive_
    53
     4// $Id$
     5
    66#include <c++_tools/statistics/OneDimensional.h>
    7 
    8 #include <c++_tools/gslapi/vector.h>
    97
    108#include <iostream>
    119#include <utility>
    1210
    13 
    1411namespace theplu {
     12  namespace utility {
     13    class vector;
     14  }
    1515namespace statistics {
    1616namespace regression {
     
    4646    /// weighted version with unity weights.
    4747    ///
    48     void fit(const gslapi::vector& x, const gslapi::vector& y);
     48    void fit(const utility::vector& x, const utility::vector& y);
    4949
    5050    ///
Note: See TracChangeset for help on using the changeset viewer.