Files
ortools-clone/examples/parse_dimacs_assignment.h
lperron@google.com 2fce86a422 fix includes
2011-09-21 15:16:48 +00:00

21 lines
567 B
C++

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