Files
ortools-clone/examples/cpp/magic_square_sat.cc

112 lines
3.2 KiB
C++
Raw Normal View History

2025-01-10 11:35:44 +01:00
// Copyright 2010-2025 Google LLC
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2025-02-25 16:03:40 +01:00
#include <cstdlib>
#include <string>
#include <vector>
2025-02-25 16:03:40 +01:00
#include "absl/base/log_severity.h"
2021-01-14 10:48:19 +01:00
#include "absl/flags/flag.h"
2025-02-25 16:03:40 +01:00
#include "absl/log/globals.h"
2018-11-28 11:32:45 +01:00
#include "absl/strings/str_format.h"
2022-02-25 09:47:52 +01:00
#include "ortools/base/init_google.h"
2021-01-14 10:48:19 +01:00
#include "ortools/base/logging.h"
#include "ortools/sat/cp_model.h"
#include "ortools/sat/model.h"
2025-02-25 16:03:40 +01:00
#include "ortools/util/sorted_interval_list.h"
2020-10-23 11:50:14 +02:00
ABSL_FLAG(int, size, 7, "Size of the magic square");
2021-01-14 10:48:19 +01:00
ABSL_FLAG(std::string, params, "", "Sat parameters");
namespace operations_research {
namespace sat {
void MagicSquare(int size) {
CpModelBuilder builder;
2021-12-29 17:41:57 +01:00
std::vector<std::vector<IntVar>> square(size);
std::vector<IntVar> all_variables;
2021-12-29 17:41:57 +01:00
const Domain domain(1, size * size);
for (int i = 0; i < size; ++i) {
for (int j = 0; j < size; ++j) {
const IntVar var = builder.NewIntVar(domain);
square[i].push_back(var);
all_variables.push_back(var);
}
}
2021-12-29 17:41:57 +01:00
// All cells take different values.
2022-01-20 21:30:24 +01:00
builder.AddAllDifferent(all_variables);
2021-12-29 17:41:57 +01:00
// The sum on each row, columns and two main diagonals.
const int magic_value = size * (size * size + 1) / 2;
// Sum on rows.
for (int i = 0; i < size; ++i) {
2021-12-29 17:41:57 +01:00
LinearExpr sum;
for (int j = 0; j < size; ++j) {
sum += square[i][j];
}
builder.AddEquality(sum, magic_value);
}
// Sum on columns.
2021-12-29 17:41:57 +01:00
for (int j = 0; j < size; ++j) {
LinearExpr sum;
for (int i = 0; i < size; ++i) {
sum += square[i][j];
}
builder.AddEquality(sum, magic_value);
}
// Sum on diagonals.
2021-12-29 17:41:57 +01:00
LinearExpr diag1_sum;
LinearExpr diag2_sum;
for (int i = 0; i < size; ++i) {
diag1_sum += square[i][i];
diag2_sum += square[i][size - 1 - i];
}
builder.AddEquality(diag1_sum, magic_value);
builder.AddEquality(diag2_sum, magic_value);
2018-11-28 11:32:45 +01:00
2018-11-24 16:01:12 +01:00
Model model;
model.Add(NewSatParameters(absl::GetFlag(FLAGS_params)));
2018-11-24 16:01:12 +01:00
const CpSolverResponse response = SolveCpModel(builder.Build(), &model);
2018-11-24 16:01:12 +01:00
if (response.status() == CpSolverStatus::OPTIMAL) {
2020-09-23 11:45:03 +02:00
for (int n = 0; n < size; ++n) {
std::string output;
for (int m = 0; m < size; ++m) {
2018-11-28 11:32:45 +01:00
absl::StrAppendFormat(&output, "%3d ",
SolutionIntegerValue(response, square[n][m]));
}
LOG(INFO) << output;
2018-11-28 11:32:45 +01:00
}
} else {
LOG(INFO) << "No solution found!";
}
2018-11-28 11:32:45 +01:00
LOG(INFO) << CpSolverResponseStats(response);
}
2020-10-22 23:36:58 +02:00
} // namespace sat
} // namespace operations_research
2020-10-29 14:25:39 +01:00
int main(int argc, char** argv) {
2025-02-25 16:03:40 +01:00
absl::SetStderrThreshold(absl::LogSeverityAtLeast::kInfo);
2022-02-25 09:47:52 +01:00
InitGoogle(argv[0], &argc, &argv, true);
2021-01-14 10:48:19 +01:00
operations_research::sat::MagicSquare(absl::GetFlag(FLAGS_size));
return EXIT_SUCCESS;
}