Home | History | Annotate | Download | only in fpcmp

Lines Matching refs:cl

21   cl::opt<std::string>
22 File1(cl::Positional, cl::desc("<input file #1>"), cl::Required);
23 cl::opt<std::string>
24 File2(cl::Positional, cl::desc("<input file #2>"), cl::Required);
26 cl::opt<double>
27 RelTolerance("r", cl::desc("Relative error tolerated"), cl::init(0));
28 cl::opt<double>
29 AbsTolerance("a", cl::desc("Absolute error tolerated"), cl::init(0));
33 cl::ParseCommandLineOptions(argc, argv);