Skip to content

Commit 8da2248

Browse files
committed
nqueens.cc fixup
1 parent 5924162 commit 8da2248

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/cpp/nqueens.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
#include "ortools/base/logging.h"
3030
#include "ortools/base/map_util.h"
3131
#include "ortools/base/types.h"
32+
#include "ortools/constraint_solver/constraint_solver.h"
3233
#include "ortools/constraint_solver/constraint_solveri.h"
3334

3435
ABSL_FLAG(bool, print, false, "If true, print one of the solution.");
@@ -39,7 +40,6 @@ ABSL_FLAG(
3940
int, size, 0,
4041
"Size of the problem. If equal to 0, will test several increasing sizes.");
4142
ABSL_FLAG(bool, use_symmetry, false, "Use Symmetry Breaking methods");
42-
ABSL_DECLARE_FLAG(bool, cp_disable_solve);
4343

4444
static const int kNumSolutions[] = {
4545
1, 0, 0, 2, 10, 4, 40, 92, 352, 724, 2680, 14200, 73712, 365596, 2279184};

0 commit comments

Comments
 (0)