Files
ortools-clone/examples/parse_dimacs_assignment.h
2011-06-22 08:40:00 +00:00

20 lines
496 B
C++

// Copyright 2011 Google Inc. All Rights Reserved.
#ifndef OR_TOOLS_GRAPH_PARSE_DIMACS_ASSIGNMENT_H_
#define OR_TOOLS_GRAPH_PARSE_DIMACS_ASSIGNMENT_H_
#include <string>
#include "graph/linear_assignment.h"
namespace operations_research {
class LinearSumAssignment;
LinearSumAssignment* ParseDimacsAssignment(const string& filename,
string* error_message);
} // namespace operations_research
#endif // OR_TOOLS_GRAPH_PARSE_DIMACS_ASSIGNMENT_H_