00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef OR_TOOLS_EXAMPLES_PRINT_DIMACS_ASSIGNMENT_H_
00018 #define OR_TOOLS_EXAMPLES_PRINT_DIMACS_ASSIGNMENT_H_
00019
00020 #include <string>
00021
00022 #include "graph/ebert_graph.h"
00023
00024 namespace operations_research {
00025
00026 template <typename GraphType> class LinearSumAssignment;
00027
00028
00029
00030
00031
00032 void PrintDimacsAssignmentProblem(
00033 const LinearSumAssignment<ForwardStarGraph>& assignment,
00034 const TailArrayManager<ForwardStarGraph>& tail_array_manager,
00035 const string& output_filename);
00036
00037 }
00038
00039 #endif // OR_TOOLS_EXAMPLES_PRINT_DIMACS_ASSIGNMENT_H_