Files
ortools-clone/examples/print_dimacs_assignment.h

20 lines
510 B
C
Raw Normal View History

// 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_
#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_