We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b941015 commit 404757cCopy full SHA for 404757c
1 file changed
examples/main.cpp
@@ -36,7 +36,7 @@ main(int argc, char *argv[]) {
36
if ( argc == 3 ) {
37
nrows = atoi(argv[1]);
38
ncols = atoi(argv[2]);
39
- }
+ }
40
41
Matrix<double> matrix(nrows, ncols);
42
@@ -60,7 +60,7 @@ main(int argc, char *argv[]) {
60
std::cout << std::endl;
61
62
// Apply Munkres algorithm to matrix.
63
- Munkres<double> m;
+ Munkres<double> m;
64
m.solve(matrix);
65
66
// Display solved matrix.
0 commit comments