2011-06-22 08:40:00 +00:00
|
|
|
// Copyright 2011 Google Inc. All Rights Reserved.
|
|
|
|
|
|
2011-09-21 15:16:48 +00:00
|
|
|
#ifndef OR_TOOLS_EXAMPLES_PRINT_DIMACS_ASSIGNMENT_H_
|
|
|
|
|
#define OR_TOOLS_EXAMPLES_PRINT_DIMACS_ASSIGNMENT_H_
|
2011-06-22 08:40:00 +00:00
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
|
|
#include "graph/linear_assignment.h"
|
|
|
|
|
|
|
|
|
|
namespace operations_research {
|
|
|
|
|
|
|
|
|
|
class LinearSumAssignment;
|
|
|
|
|
|
|
|
|
|
void PrintDimacsAssignmentProblem(const LinearSumAssignment& assignment,
|
|
|
|
|
const string& output_filename);
|
|
|
|
|
|
|
|
|
|
} // namespace operations_research
|
|
|
|
|
|
2011-09-21 15:16:48 +00:00
|
|
|
#endif // OR_TOOLS_EXAMPLES_PRINT_DIMACS_ASSIGNMENT_H_
|