#ifndef RSVMTN_H
#define RSVMTN_H

// Truncated Newton method based RankSVM

#include"ranksvm.h"

class RSVMTN:public RSVM
{
public:
    std::string getName()
    {
        return "TN";
    };
    virtual int train(DataSet &D, Labels &label);
    virtual int predict(DataSet &D, Labels &res);
};

#endif