//
//  main.cpp
//  Tensor Predictor
//
//  Created by Bui Thang on 1/20/14.
//  Copyright (c) 2014 Bui Thang. All rights reserved.
//

#include <iostream>
#include "Tensor Regression.h"
#include <cstring>
int main(int argc, const char * argv[])
{

    if (strcmp(argv[2], "0")==0)Test(argv[1],'0');
    else Test(argv[1],'1');
   /* cout<<"Huesken \t     Reynolds \t   Vicker \t Harborth \t Uitei \t Khovorava\t Solution"<<endl;
    for (int k=1; k<10; k++) {
   // int k=1;
    Test("Huesken19_test.txt",'1',k);
    Test("Reynolds.txt",'1',k);
        Test("Vicker.txt",'1',k);
        Test("Harborth.txt",'1',k);
        Test("Uitei.txt",'1',k);
        Test("Khovorova.txt", '1',k);
        cout<<k<<endl;
    }*/
  //  Test("Uitei.txt",'1',k);
    //Test("Khovorova.txt", '1',k);
   // Test("Sloan.txt", '1',k);
   // Test("Isis.txt", '1',k);
    //Test("Ncbi.txt", '1',k);

    // insert code here...
    //std::cout << "Hello, World!\n";
        return 0;
}

