00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef OR_TOOLS_EXAMPLES_PARSE_DIMACS_ASSIGNMENT_H_
00019 #define OR_TOOLS_EXAMPLES_PARSE_DIMACS_ASSIGNMENT_H_
00020
00021 #include <string>
00022
00023 #include "graph/ebert_graph.h"
00024
00025 namespace operations_research {
00026
00027 template <typename GraphType> class LinearSumAssignment;
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 LinearSumAssignment<ForwardStarGraph>* ParseDimacsAssignment(
00043 const string& filename,
00044 string* error_message,
00045 ForwardStarGraph** graph);
00046
00047 }
00048
00049 #endif // OR_TOOLS_EXAMPLES_PARSE_DIMACS_ASSIGNMENT_H_