#ifndef LINPROG_IO_H #define LINPROG_IO_H #include #include "linprog/model.h" #include "linprog/solver.h" #include "lp_common.h" std::ostream& operator<<(std::ostream &os, const LinearExpression &exp); std::ostream& operator<<(std::ostream &os, const LinearProgram &lp); void dump_lp_solution( VarMapper& vars, const ResourceSharingInfo& info, const TaskInfo& ti, const Solution& solution, std::ostream& out, bool show_zeros = false); #endif