delpi  0.0.1
DElta-complete LP solver
Loading...
Searching...
No Matches
LpStats.cpp
1
6#include "delpi/solver/LpStats.h"
7
8#include <ostream>
9
10namespace delpi {
11
12std::ostream& operator<<(std::ostream& os, const LpStats& stats) {
13 os << "LpStats:\n"
14 << "Solver stats: " << stats.solver_stats << "\n"
15 << "Parser stats: " << stats.parser_stats << "\n"
16 << "Refinements: " << stats.refinements << "\n"
17 << "Precision: " << stats.precision;
18 return os;
19}
20
21} // namespace delpi
Global namespace for the delpi library.
Collection of statistics for the LP solver.
Definition LpStats.h:17