summaryrefslogtreecommitdiff
blob: ae55cd990db16277b64c2c624f59bfd013cfea41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <iostream>
#include <string>

#include "TestAccuracy.hpp"

// Actions
#include "ActionGESV.hpp"

using namespace std;

int main(int argc, char **argv)
{
    bool do_gesv = false;

    // Parse input
    for (int i = 1; i < argc; ++i) {
        std::string arg = argv[i];
        if (arg == "general_solve") do_gesv = true;
    }

    if (do_gesv)
        testAccuracy<ActionGESV, double>(4, 2000, 20);
}