author int64 658 755k | date stringlengths 19 19 | timezone int64 -46,800 43.2k | hash stringlengths 40 40 | message stringlengths 5 490 | mods list | language stringclasses 20 values | license stringclasses 3 values | repo stringlengths 5 68 | original_message stringlengths 12 491 |
|---|---|---|---|---|---|---|---|---|---|
261,230 | 12.03.2021 13:27:14 | -3,600 | 968113be63e791d31e739a24d7d2bcbac9d13c1a | polish java/python/.net log from CP-SAT | [
{
"change_type": "MODIFY",
"old_path": "examples/tests/SatSolverTest.java",
"new_path": "examples/tests/SatSolverTest.java",
"diff": "@@ -163,6 +163,8 @@ public class SatSolverTest {\n@Test\npublic void testLogCapture() {\n+ System.out.println(\"testLogCapture\");\n+\n// Creates the model.\nCpModel ... | C++ | Apache License 2.0 | google/or-tools | polish java/python/.net log from CP-SAT |
261,218 | 11.03.2021 15:50:31 | -3,600 | 19f9251be325abb8f732f55ce28dbbc5287d5010 | Add encrypted gpg release key | [
{
"change_type": "MODIFY",
"old_path": "tools/release/build_delivery_mac.sh",
"new_path": "tools/release/build_delivery_mac.sh",
"diff": "@@ -6,6 +6,11 @@ if [[ -z \"${DOTNET_SNK}\" ]]; then\nexit 1\nfi\n+if [[ -z \"${ORTOOLS_TOKEN}\" ]]; then\n+ echo \"ORTOOLS_TOKEN: not found !\" | tee build.log\n... | C++ | Apache License 2.0 | google/or-tools | Add encrypted gpg release key |
261,230 | 12.03.2021 17:02:25 | -3,600 | 07cf6e38f3a478811e7791f17459a7622de8877c | change flatzinc logging; use new CP-SAT logging | [
{
"change_type": "MODIFY",
"old_path": "ortools/flatzinc/BUILD",
"new_path": "ortools/flatzinc/BUILD",
"diff": "@@ -14,6 +14,7 @@ cc_library(\nhdrs = [\"logging.h\"],\ndeps = [\n\"//ortools/base\",\n+ \"@com_google_absl//absl/strings\",\n],\n)\n"
},
{
"change_type": "MODIFY",
"old_path":... | C++ | Apache License 2.0 | google/or-tools | change flatzinc logging; use new CP-SAT logging |
261,230 | 12.03.2021 18:12:23 | -3,600 | 856ee71dc38b5f8bba27fe479b175bf6f0efbe87 | polish CpSolver java | [
{
"change_type": "MODIFY",
"old_path": "ortools/java/com/google/ortools/sat/CpSolver.java",
"new_path": "ortools/java/com/google/ortools/sat/CpSolver.java",
"diff": "@@ -40,7 +40,8 @@ public final class CpSolver {\n/** Solves a problem and passes each solution found to the callback. */\npublic CpSol... | C++ | Apache License 2.0 | google/or-tools | polish CpSolver java |
261,230 | 12.03.2021 18:12:40 | -3,600 | fdda5d84816961628e82c4c2b8b6fbd3b791686f | Remove FZLOG in favor of SOLVER_LOG | [
{
"change_type": "MODIFY",
"old_path": "ortools/flatzinc/BUILD",
"new_path": "ortools/flatzinc/BUILD",
"diff": "@@ -28,6 +28,7 @@ cc_library(\n\"//ortools/base:map_util\",\n\"//ortools/base:stl_util\",\n\"//ortools/graph:iterators\",\n+ \"//ortools/util:logging\",\n\"//ortools/util:string_array\",\n... | C++ | Apache License 2.0 | google/or-tools | Remove FZLOG in favor of SOLVER_LOG |
261,221 | 12.03.2021 08:39:53 | 28,800 | 3e40b17f5588cadefc4f3284f26c8ed4b60840f6 | fix the bug in cvrptw_break.py
core bug is passing the dict rather than a list to the
SetBreakIntervalsOfVehicle API call.
Also fixed the ad hoc approach to setting the node_visit_transit
values that relied on knowledge of the ORTools internal
implementation. Instead, use the IndexToNode call.
Example now works for more than one vehicle. | [
{
"change_type": "MODIFY",
"old_path": "ortools/constraint_solver/samples/cvrptw_break.py",
"new_path": "ortools/constraint_solver/samples/cvrptw_break.py",
"diff": "@@ -296,23 +296,20 @@ def main():\n# Add breaks\ntime_dimension = routing.GetDimensionOrDie(\"Time\")\nnode_visit_transit = {}\n- for ... | C++ | Apache License 2.0 | google/or-tools | fix the bug in cvrptw_break.py
core bug is passing the dict rather than a list to the
SetBreakIntervalsOfVehicle API call.
Also fixed the ad hoc approach to setting the node_visit_transit
values that relied on knowledge of the ORTools internal
implementation. Instead, use the IndexToNode call.
Example now works for more than one vehicle. |
261,218 | 12.03.2021 16:57:43 | 0 | 1b517f1cbea3ed8e1f4e966464e7c108de7ba645 | release: Update windows script | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.java.mk",
"new_path": "makefiles/Makefile.java.mk",
"diff": "@@ -366,6 +366,12 @@ run: build\ncd $(SOURCE_PROJECT_PATH) && \"$(MVN_BIN)\" exec:java $(ARGS)\nendif\n+ifneq ($(ORTOOLS_TOKEN),)\n+GPG_SIGN=\n+else\n+GPG_SIGN= -Dgpg.skip=true\n+e... | C++ | Apache License 2.0 | google/or-tools | release: Update windows script |
261,218 | 15.03.2021 09:14:45 | 0 | 3e585aecb37bc9493af7f7e7c114af5bb828ca69 | Fix logging.h | [
{
"change_type": "MODIFY",
"old_path": "ortools/util/logging.h",
"new_path": "ortools/util/logging.h",
"diff": "@@ -67,9 +67,9 @@ class SolverLogger {\nstd::vector<std::function<void(const std::string& message)>> info_callbacks_;\n};\n-#define SOLVER_LOG(logger, args...) \\\n+#define SOLVER_LOG(logg... | C++ | Apache License 2.0 | google/or-tools | Fix logging.h |
261,218 | 15.03.2021 09:16:59 | 0 | dfdf4f8954df2a89cf039af9fc864d19d99f5170 | fixup build_delivery_win.cmd | [
{
"change_type": "MODIFY",
"old_path": "tools/release/build_delivery_win.cmd",
"new_path": "tools/release/build_delivery_win.cmd",
"diff": "@@ -85,6 +85,7 @@ REM ########################\necho Install Java gpg | tee.exe -a build.log\nopenssl aes-256-cbc -iter 42 -pass pass:%ORTOOLS_TOKEN% -in tools\... | C++ | Apache License 2.0 | google/or-tools | fixup build_delivery_win.cmd |
261,230 | 15.03.2021 11:28:28 | -3,600 | f08183492a6be7ee763a8156d6909009c7e3a519 | tweak SolverLogger API; port flatzinc to use it | [
{
"change_type": "MODIFY",
"old_path": "ortools/flatzinc/checker.cc",
"new_path": "ortools/flatzinc/checker.cc",
"diff": "#include \"absl/container/flat_hash_map.h\"\n#include \"absl/container/flat_hash_set.h\"\n#include \"ortools/base/map_util.h\"\n-#include \"ortools/flatzinc/logging.h\"\n#include... | C++ | Apache License 2.0 | google/or-tools | tweak SolverLogger API; port flatzinc to use it |
261,230 | 15.03.2021 11:37:57 | -3,600 | 193101786ecb527fb76a957ce5f2efe4016836c5 | fix fz BUILD file | [
{
"change_type": "MODIFY",
"old_path": "ortools/flatzinc/BUILD",
"new_path": "ortools/flatzinc/BUILD",
"diff": "@@ -8,16 +8,6 @@ package(default_visibility = [\"//visibility:public\"])\n# Baseline flatzinc model.\n# ---------------------------------------------------------------------------\n-cc_lib... | C++ | Apache License 2.0 | google/or-tools | fix fz BUILD file |
261,230 | 17.03.2021 14:01:03 | -3,600 | e1ff18054da8bdda3bb82f05138f444afc34735c | expand base libraries | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "ortools/base/linked_hash_map.h",
"diff": "+// Copyright 2010-2018 Google LLC\n+// Licensed under the Apache License, Version 2.0 (the \"License\");\n+// you may not use this file except in compliance with the License.\n+// You may obtain a copy ... | C++ | Apache License 2.0 | google/or-tools | expand base libraries |
261,230 | 17.03.2021 16:18:56 | -3,600 | b40ae2cd8ca8fdc664870997c2b51794d0e95ab0 | polish gurobi environment code | [
{
"change_type": "MODIFY",
"old_path": "ortools/gurobi/BUILD",
"new_path": "ortools/gurobi/BUILD",
"diff": "@@ -9,11 +9,12 @@ cc_library(\n\"environment.h\",\n],\ndeps = [\n+ \"//ortools/base\",\n+ \"//ortools/base:dynamic_library\",\n\"@com_google_absl//absl/status\",\n+ \"@com_google_absl//absl/st... | C++ | Apache License 2.0 | google/or-tools | polish gurobi environment code |
261,230 | 19.03.2021 16:24:17 | -3,600 | 8cdd23bf417a3df1bda952f6705378713d5f6df4 | rename files in port/ add portable and non portable code | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.gen.mk",
"new_path": "makefiles/Makefile.gen.mk",
"diff": "@@ -157,23 +157,23 @@ PORT_DEPS = \\\n$(SRC_DIR)/ortools/port/utf8.h\nPORT_LIB_OBJS = \\\n- $(OBJ_DIR)/port/file_nonport.$O \\\n- $(OBJ_DIR)/port/sysinfo_nonport.$O\n+ $(OBJ_DIR)/por... | C++ | Apache License 2.0 | google/or-tools | rename files in port/ add portable and non portable code |
261,230 | 19.03.2021 16:24:52 | -3,600 | 0b85ce429c41015b00d6acb3d7fe2b2ee2030da9 | allow overriding the glop parameters | [
{
"change_type": "MODIFY",
"old_path": "ortools/glop/lp_solver.cc",
"new_path": "ortools/glop/lp_solver.cc",
"diff": "@@ -55,6 +55,9 @@ ABSL_FLAG(std::string, lp_dump_file_basename, \"\",\n\"Base name for dump files. LinearProgram::name_ is used if \"\n\"lp_dump_file_basename is empty. If LinearProg... | C++ | Apache License 2.0 | google/or-tools | allow overriding the glop parameters |
261,230 | 19.03.2021 16:26:31 | -3,600 | 814a32fa50ba14ebe5b2dd0d0fe3cab4b936a201 | new init class to be called from non C++ languages | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "ortools/init/init.h",
"diff": "+#include <string>\n+#include <vector>\n+\n+#include \"ortools/base/logging.h\"\n+#include \"ortools/gurobi/environment.h\"\n+\n+namespace operations_research {\n+\n+// This class performs various C++ initializatio... | C++ | Apache License 2.0 | google/or-tools | new init class to be called from non C++ languages |
261,230 | 19.03.2021 18:55:20 | -3,600 | 3c1932b21a32643a10086b9fe5772482710d5bb1 | export init.h to all languages | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.cpp.mk",
"new_path": "makefiles/Makefile.cpp.mk",
"diff": "@@ -88,6 +88,9 @@ $(GEN_DIR)/ortools/sat: | $(GEN_DIR)/ortools\n$(GEN_DIR)/ortools/util: | $(GEN_DIR)/ortools\n-$(MKDIR) $(GEN_PATH)$Sortools$Sutil\n+$(GEN_DIR)/ortools/init: | $(GEN... | C++ | Apache License 2.0 | google/or-tools | export init.h to all languages |
261,230 | 19.03.2021 18:58:27 | -3,600 | e29b1f578ba8bb6c8c280f088ab54f89e7846f91 | export init to pypi archive | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.python.mk",
"new_path": "makefiles/Makefile.python.mk",
"diff": "@@ -989,6 +989,13 @@ $(PYPI_ARCHIVE_TEMP_DIR)/ortools/ortools/util: $(PYSORTED_INTERVAL_LIST_LIBS) |\n$(COPY) $(GEN_PATH)$Sortools$Sutil$S*.py* $(PYPI_ARCHIVE_TEMP_DIR)$Sortool... | C++ | Apache License 2.0 | google/or-tools | export init to pypi archive |
261,218 | 18.03.2021 16:00:49 | -3,600 | 7b68ef157fbbbbed866632fd401f1d1681c71eef | Update build_delivery_linux.sh | [
{
"change_type": "MODIFY",
"old_path": "tools/release/build_delivery_linux.sh",
"new_path": "tools/release/build_delivery_linux.sh",
"diff": "@@ -83,10 +83,10 @@ function build_dotnet() {\ncommand -v dotnet | xargs echo \"dotnet: \" | tee -a build.log\n# Install .Net SNK\n- echo -n \"Install .Net sn... | C++ | Apache License 2.0 | google/or-tools | Update build_delivery_linux.sh |
261,218 | 19.03.2021 10:01:01 | -3,600 | 74f44bc6e35cedfa699cd83abf38a1a9ddbc8470 | Update build_delivery_unix | [
{
"change_type": "MODIFY",
"old_path": "tools/release/build_delivery_unix.sh",
"new_path": "tools/release/build_delivery_unix.sh",
"diff": "#!/usr/bin/env bash\nset -eo pipefail\n-function help {\n+function help() {\nlocal -r NAME=$(basename \"$0\")\nlocal -r BOLD=\"\\e[1m\"\nlocal -r RESET=\"\\e[0m... | C++ | Apache License 2.0 | google/or-tools | Update build_delivery_unix |
261,218 | 21.03.2021 01:20:46 | -3,600 | a93387781b0b5bbb9610e1580beb8643e3356df7 | Update cvrptw_break | [
{
"change_type": "MODIFY",
"old_path": "ortools/constraint_solver/samples/cvrptw_break.py",
"new_path": "ortools/constraint_solver/samples/cvrptw_break.py",
"diff": "#!/usr/bin/env python\n-# This Python file uses the following encoding: utf-8\n-# Copyright 2015 Tin Arm Engineering AB\n-# Copyright ... | C++ | Apache License 2.0 | google/or-tools | Update cvrptw_break |
261,230 | 22.03.2021 12:19:26 | -3,600 | 862e898f1e754f2c67586fbe6a362eb0e3989dc8 | gurobi dll must be kept alive | [
{
"change_type": "MODIFY",
"old_path": "ortools/gurobi/environment.cc",
"new_path": "ortools/gurobi/environment.cc",
"diff": "@@ -747,15 +747,16 @@ std::vector<std::string> GurobiDynamicLibraryPotentialPaths() {\nnamespace {\nstd::once_flag gurobi_loading_done;\nstd::atomic<bool> gurobi_successfully... | C++ | Apache License 2.0 | google/or-tools | gurobi dll must be kept alive |
261,230 | 22.03.2021 17:05:54 | -3,600 | 82c66832190287b22be0d2e4031d425536249ceb | adaptative refactor frequency for glop | [
{
"change_type": "MODIFY",
"old_path": "ortools/glop/basis_representation.cc",
"new_path": "ortools/glop/basis_representation.cc",
"diff": "@@ -227,10 +227,10 @@ Status BasisFactorization::ForceRefactorization() {\nStatus BasisFactorization::ComputeFactorization() {\nCompactSparseMatrixView basis_ma... | C++ | Apache License 2.0 | google/or-tools | adaptative refactor frequency for glop |
261,218 | 22.03.2021 16:50:10 | 0 | c38a637910ddaef8b9338fd9dc9f0bf4f60ce3bb | release: Fixup windows script | [
{
"change_type": "MODIFY",
"old_path": "tools/release/build_delivery_win.cmd",
"new_path": "tools/release/build_delivery_win.cmd",
"diff": "@@ -6,6 +6,7 @@ REM cmd /c tools\\release\\build_delivery_win.cmd all\nREM make few tools available\nset PATH=%PATH%;tools;tools\\win\n+set PRG=%0\nREM Print ve... | C++ | Apache License 2.0 | google/or-tools | release: Fixup windows script |
261,230 | 23.03.2021 17:55:40 | -3,600 | e26ce9c3de72b8b0e8fc1d46f4504e1e2adad27e | update deterministic time computation in glop | [
{
"change_type": "MODIFY",
"old_path": "ortools/glop/entering_variable.cc",
"new_path": "ortools/glop/entering_variable.cc",
"diff": "@@ -111,6 +111,7 @@ Status EnteringVariable::DualChooseEnteringColumn(\nreduced_costs_->GetDualFeasibilityTolerance();\nFractional harris_ratio = std::numeric_limits<... | C++ | Apache License 2.0 | google/or-tools | update deterministic time computation in glop |
261,230 | 23.03.2021 17:55:53 | -3,600 | 03ff2cf74457cd0ea22a2bb227a69fd6c5543c50 | polish gurobi/environment | [
{
"change_type": "MODIFY",
"old_path": "ortools/gurobi/environment.cc",
"new_path": "ortools/gurobi/environment.cc",
"diff": "@@ -36,6 +36,11 @@ bool GurobiIsCorrectlyInstalled() {\nreturn true;\n}\n+// This was generated with the parse_header.py script.\n+// See the comment at the top of the script... | C++ | Apache License 2.0 | google/or-tools | polish gurobi/environment |
261,230 | 23.03.2021 19:26:56 | -3,600 | bcfb3bee74795458ba6b1f00bc9f7a74ebded34d | add Init to python example | [
{
"change_type": "MODIFY",
"old_path": "examples/python/integer_programming.py",
"new_path": "examples/python/integer_programming.py",
"diff": "\"\"\"Integer programming examples that show how to use the APIs.\"\"\"\nfrom ortools.linear_solver import pywraplp\n+from ortools.init import init\ndef Ann... | C++ | Apache License 2.0 | google/or-tools | add Init to python example |
261,230 | 23.03.2021 19:27:09 | -3,600 | ded662768b54600c5faff3c6b680e3856a77aa26 | one more pass on gurobi env | [
{
"change_type": "MODIFY",
"old_path": "ortools/gurobi/environment.cc",
"new_path": "ortools/gurobi/environment.cc",
"diff": "#include \"absl/strings/str_cat.h\"\n#include \"absl/strings/str_format.h\"\n#include \"absl/strings/str_join.h\"\n+#include \"absl/synchronization/mutex.h\"\n#include \"orto... | C++ | Apache License 2.0 | google/or-tools | one more pass on gurobi env |
261,230 | 23.03.2021 19:29:06 | -3,600 | 18ef1914439848b3272b5ace910403989b2aa69f | missing __init__ file | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "ortools/init/__init__.py",
"diff": "+# Copyright 2010-2018 Google LLC\n+# Licensed under the Apache License, Version 2.0 (the \"License\");\n+# you may not use this file except in compliance with the License.\n+# You may obtain a copy of the Lic... | C++ | Apache License 2.0 | google/or-tools | missing __init__ file |
261,230 | 23.03.2021 19:46:34 | -3,600 | 78b814ddcb1df77fda1533c577a3f9207f2f0e86 | expand init API | [
{
"change_type": "MODIFY",
"old_path": "examples/dotnet/csintegerprogramming.cs",
"new_path": "examples/dotnet/csintegerprogramming.cs",
"diff": "@@ -100,6 +100,8 @@ public class CsIntegerProgramming\nstatic void Main()\n{\n+ Google.OrTools.Init.Init.InitCppLogging(\"csintegerprogramming.cs\", true,... | C++ | Apache License 2.0 | google/or-tools | expand init API |
261,276 | 24.03.2021 11:27:02 | -39,600 | 54383088796729c3339afed0953c40ec855171a7 | improved cvrp_reload.py module documentation
fixed issue with wrong indices being passed to disjunction | [
{
"change_type": "MODIFY",
"old_path": "ortools/constraint_solver/samples/cvrp_reload.py",
"new_path": "ortools/constraint_solver/samples/cvrp_reload.py",
"diff": "\"\"\"Capacitated Vehicle Routing Problem (CVRP).\nThis is a sample using the routing library python wrapper to solve a CVRP\n- problem.... | C++ | Apache License 2.0 | google/or-tools | improved cvrp_reload.py module documentation
- fixed issue with wrong indices being passed to disjunction |
261,230 | 24.03.2021 09:53:31 | -3,600 | cb924a36893d1e2f52fe5d5402487b0df4401ffa | final pass on gurobi loading code | [
{
"change_type": "MODIFY",
"old_path": "ortools/gurobi/environment.cc",
"new_path": "ortools/gurobi/environment.cc",
"diff": "@@ -444,272 +444,223 @@ void LoadGurobiFunctions(DynamicLibrary* gurobi_dynamic_library) {\n// This is the 'assign' section.\n- gurobi_dynamic_library->GetFunction(&GRBisqp, ... | C++ | Apache License 2.0 | google/or-tools | final pass on gurobi loading code |
261,230 | 24.03.2021 09:53:51 | -3,600 | baa367883240a138e4a507005e83884e551979ba | remove duplicate swig include | [
{
"change_type": "MODIFY",
"old_path": "ortools/algorithms/python/knapsack_solver.i",
"new_path": "ortools/algorithms/python/knapsack_solver.i",
"diff": "// - ortools/algorithms/samples/knapsack.py\n// - ./pywrapknapsack_solver_test.py\n-%include \"stdint.i\"\n-\n%include \"ortools/base/base.i\"\n%i... | C++ | Apache License 2.0 | google/or-tools | remove duplicate swig include |
261,230 | 24.03.2021 09:54:05 | -3,600 | f9f4ab4d5f950324d8aa35e32d3c9012fc30bd1c | add support for multiple solutions in scip | [
{
"change_type": "MODIFY",
"old_path": "ortools/linear_solver/scip_proto_solver.cc",
"new_path": "ortools/linear_solver/scip_proto_solver.cc",
"diff": "@@ -842,14 +842,37 @@ absl::StatusOr<MPSolutionResponse> ScipSolveProto(\n}\nRETURN_IF_SCIP_ERROR(SCIPsolve(scip));\n- SCIP_SOL* const solution = SC... | C++ | Apache License 2.0 | google/or-tools | add support for multiple solutions in scip |
261,230 | 24.03.2021 09:54:39 | -3,600 | 6a562b0c29c9be0bbb071756a39bb76ef9209983 | introduce struct to hold flags in cpp init code; rename classes | [
{
"change_type": "MODIFY",
"old_path": "examples/dotnet/csintegerprogramming.cs",
"new_path": "examples/dotnet/csintegerprogramming.cs",
"diff": "// limitations under the License.\nusing System;\n+using Google.OrTools.Init;\nusing Google.OrTools.LinearSolver;\npublic class CsIntegerProgramming\n@@ -... | C++ | Apache License 2.0 | google/or-tools | introduce struct to hold flags in cpp init code; rename classes |
261,230 | 24.03.2021 20:59:34 | -3,600 | a2b14b57dd7a3611595d683dd883e5c59855f5d0 | simplify glop numerical error management | [
{
"change_type": "MODIFY",
"old_path": "ortools/glop/entering_variable.cc",
"new_path": "ortools/glop/entering_variable.cc",
"diff": "@@ -87,9 +87,9 @@ Status EnteringVariable::PrimalChooseEnteringColumn(ColIndex* entering_col) {\n}\nStatus EnteringVariable::DualChooseEnteringColumn(\n- const Update... | C++ | Apache License 2.0 | google/or-tools | simplify glop numerical error management |
261,230 | 24.03.2021 21:00:37 | -3,600 | c6faf57d2c5f86380acd1cd92e3a79d8e8972cc6 | first pass at reducing thread contention. We now use 44 cores instead of 28-30 | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model_lns.cc",
"new_path": "ortools/sat/cp_model_lns.cc",
"diff": "#include <numeric>\n#include <vector>\n+#include \"absl/synchronization/mutex.h\"\n#include \"ortools/sat/cp_model.pb.h\"\n#include \"ortools/sat/cp_model_loader.h\"\n#include \"... | C++ | Apache License 2.0 | google/or-tools | first pass at reducing thread contention. We now use 44 cores instead of 28-30 |
261,230 | 24.03.2021 21:15:55 | -3,600 | 6f73a7f5296b5117664a259de5e9033cb6c7de42 | add Shutdown method to non C++ init class | [
{
"change_type": "MODIFY",
"old_path": "ortools/init/csharp/init.i",
"new_path": "ortools/init/csharp/init.i",
"diff": "// Expose the static methods of the bridge class.\n%unignore operations_research::CppBridge;\n%unignore operations_research::CppBridge::InitLogging;\n+%unignore operations_research... | C++ | Apache License 2.0 | google/or-tools | add Shutdown method to non C++ init class |
261,230 | 24.03.2021 22:55:51 | -3,600 | a9f1dba3ac1c90f9511dedbcdceda7f367f540a4 | release the helper mutex when copying the full neighborhood, fix | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model_lns.cc",
"new_path": "ortools/sat/cp_model_lns.cc",
"diff": "@@ -52,7 +52,7 @@ NeighborhoodGeneratorHelper::NeighborhoodGeneratorHelper(\n}\nvoid NeighborhoodGeneratorHelper::Synchronize() {\n- absl::MutexLock mutex_lock(&data_mutex_);\n+ ... | C++ | Apache License 2.0 | google/or-tools | release the helper mutex when copying the full neighborhood, fix #1588 |
261,230 | 25.03.2021 08:41:19 | -3,600 | 9223ec4fcccce99df118b1efa8f632b202294a4b | small reduction of thread contention in CP-SAT | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model_lns.cc",
"new_path": "ortools/sat/cp_model_lns.cc",
"diff": "@@ -60,6 +60,8 @@ void NeighborhoodGeneratorHelper::Synchronize() {\nshared_bounds_->GetChangedBounds(shared_bounds_id_, &model_variables,\n&new_lower_bounds, &new_upper_bounds);... | C++ | Apache License 2.0 | google/or-tools | small reduction of thread contention in CP-SAT |
261,230 | 25.03.2021 12:56:40 | -3,600 | 106499bc9762500b8ddd88554e99ca7e7a7b03bb | sync with internal code, no changes | [
{
"change_type": "MODIFY",
"old_path": "ortools/linear_solver/linear_solver.cc",
"new_path": "ortools/linear_solver/linear_solver.cc",
"diff": "@@ -1563,11 +1563,6 @@ bool MPSolver::ExportModelAsLpFormat(bool obfuscate,\nbool MPSolver::ExportModelAsMpsFormat(bool fixed_format, bool obfuscate,\nstd::... | C++ | Apache License 2.0 | google/or-tools | sync with internal code, no changes |
261,230 | 25.03.2021 12:56:51 | -3,600 | c155c2928d2a1a508b6487bca3ab2a98ae2b0a06 | disambiguate mutexes | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model_lns.cc",
"new_path": "ortools/sat/cp_model_lns.cc",
"diff": "@@ -52,7 +52,7 @@ NeighborhoodGeneratorHelper::NeighborhoodGeneratorHelper(\n}\nvoid NeighborhoodGeneratorHelper::Synchronize() {\n- absl::MutexLock mutex_lock(&mutex_);\n+ absl:... | C++ | Apache License 2.0 | google/or-tools | disambiguate mutexes |
261,230 | 25.03.2021 22:38:06 | -3,600 | 0591d1cf0cbae5d886f16413d481580a46954cba | more work on glop stability | [
{
"change_type": "MODIFY",
"old_path": "ortools/glop/entering_variable.cc",
"new_path": "ortools/glop/entering_variable.cc",
"diff": "@@ -89,9 +89,8 @@ Status EnteringVariable::PrimalChooseEnteringColumn(ColIndex* entering_col) {\nStatus EnteringVariable::DualChooseEnteringColumn(\nbool nothing_to_r... | C++ | Apache License 2.0 | google/or-tools | more work on glop stability |
261,230 | 25.03.2021 22:38:34 | -3,600 | fc56b86cbfca2297d4ce8031d44631ec27292c82 | reduce thread contention; improve complexity of one LNS operator | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model_lns.cc",
"new_path": "ortools/sat/cp_model_lns.cc",
"diff": "@@ -52,7 +52,6 @@ NeighborhoodGeneratorHelper::NeighborhoodGeneratorHelper(\n}\nvoid NeighborhoodGeneratorHelper::Synchronize() {\n- absl::MutexLock mutex_lock(&helper_mutex_);\n... | C++ | Apache License 2.0 | google/or-tools | reduce thread contention; improve complexity of one LNS operator |
261,218 | 29.03.2021 13:47:10 | 0 | b923d8258ffef6e1269749bd8a6aa8285c01f2f1 | release: update windows publish script | [
{
"change_type": "MODIFY",
"old_path": "tools/release/publish_delivery_win.cmd",
"new_path": "tools/release/publish_delivery_win.cmd",
"diff": "+@echo off\nREM /!\\ THIS SCRIPT SUPPOSE A FIXED PATH FOR PYTHON /!\\\n-REM run it as: cmd /c tools\\release\\publish_delivery_win.cmd\n+REM run it as:\n+RE... | C++ | Apache License 2.0 | google/or-tools | release: update windows publish script |
261,230 | 29.03.2021 16:08:33 | -7,200 | 4f112667d4928fea83f5bf0c534f0d2773f17e8e | more work on CP-SAT thread contention code | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model_lns.cc",
"new_path": "ortools/sat/cp_model_lns.cc",
"diff": "@@ -214,6 +214,7 @@ Neighborhood NeighborhoodGeneratorHelper::FullNeighborhood() const {\nstd::vector<int> NeighborhoodGeneratorHelper::GetActiveIntervals(\nconst CpSolverRespons... | C++ | Apache License 2.0 | google/or-tools | more work on CP-SAT thread contention code |
261,230 | 31.03.2021 10:38:03 | -7,200 | 3e45ddd505a4ecfae595dee8bfe2560785c290dc | do not hardcode the cplex version in the windows makefiles | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.win.mk",
"new_path": "makefiles/Makefile.third_party.win.mk",
"diff": "@@ -178,7 +178,10 @@ Makefile.local: makefiles/Makefile.third_party.$(SYSTEM).mk\n@echo # >> Makefile.local\n@echo ## OPTIONAL DEPENDENCIES ## >> Makefile.loc... | C++ | Apache License 2.0 | google/or-tools | do not hardcode the cplex version in the windows makefiles |
261,230 | 01.04.2021 10:15:26 | -7,200 | 8096f5bc0b3b68e3378a4ad07c548cae0d7901e8 | add more flags to CppFlags in init.h; export to python, java, .NET | [
{
"change_type": "MODIFY",
"old_path": "ortools/init/csharp/init.i",
"new_path": "ortools/init/csharp/init.i",
"diff": "%unignore operations_research::CppFlags;\n%unignore operations_research::CppFlags::logtostderr;\n%unignore operations_research::CppFlags::log_prefix;\n+%unignore operations_researc... | C++ | Apache License 2.0 | google/or-tools | add more flags to CppFlags in init.h; export to python, java, .NET |
261,218 | 01.04.2021 12:10:10 | -7,200 | ee149e1679a54455064c84a6e5d80ae3f20c4920 | data: Add vector_bin_packing | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "ortools/data/vector_bin_packing.proto",
"diff": "+// Copyright 2010-2018 Google LLC\n+// Licensed under the Apache License, Version 2.0 (the \"License\");\n+// you may not use this file except in compliance with the License.\n+// You may obtain ... | C++ | Apache License 2.0 | google/or-tools | data: Add vector_bin_packing |
261,218 | 01.04.2021 12:11:08 | -7,200 | 35ccfc3b201a8e73f595e64cc91ac5d1b4c7a555 | bazel: Add linked_hash_map | [
{
"change_type": "MODIFY",
"old_path": "ortools/base/BUILD",
"new_path": "ortools/base/BUILD",
"diff": "@@ -372,6 +372,16 @@ cc_library(\n],\n)\n+cc_library(\n+ name = \"linked_hash_map\",\n+ hdrs = [\"linked_hash_map.h\"],\n+ deps = [\n+ \":base\",\n+ \"@com_google_absl//absl/container:common\",\n+... | C++ | Apache License 2.0 | google/or-tools | bazel: Add linked_hash_map |
261,218 | 01.04.2021 12:11:29 | -7,200 | 8c427ed89803258d1ccdcb61db4801476e25c389 | Cleanup python-swig.h | [
{
"change_type": "MODIFY",
"old_path": "ortools/base/python-swig.h",
"new_path": "ortools/base/python-swig.h",
"diff": "@@ -219,11 +219,7 @@ inline int SwigPyIntOrLong_Check(PyObject* o) {\n}\ninline int SwigString_Check(PyObject* o) {\n-#if PY_VERSION_HEX >= 0x03030000\nreturn PyUnicode_Check(o);\n... | C++ | Apache License 2.0 | google/or-tools | Cleanup python-swig.h |
261,218 | 01.04.2021 12:12:48 | -7,200 | 62a87c533f6f86cbf78232da26f55e4d9a07f4ea | gscip start sync with google | [
{
"change_type": "MODIFY",
"old_path": "ortools/gscip/gscip.cc",
"new_path": "ortools/gscip/gscip.cc",
"diff": "#include \"ortools/gscip/gscip.h\"\n-#include <cstdint>\n+#include <stdio.h>\n+#include <algorithm>\n+#include <cstdint>\n+#include <functional>\n+#include <limits>\n+#include <memory>\n+#... | C++ | Apache License 2.0 | google/or-tools | gscip start sync with google |
261,218 | 01.04.2021 15:34:51 | -7,200 | 9662b630d63125ffd3964b01340c063ef0b1e9b1 | python: Fix linear_solver.i wrapper | [
{
"change_type": "MODIFY",
"old_path": "ortools/linear_solver/python/linear_solver.i",
"new_path": "ortools/linear_solver/python/linear_solver.i",
"diff": "@@ -210,9 +210,9 @@ __pdoc__['Variable.thisown'] = False\nstatic double Infinity() { return operations_research::MPSolver::infinity(); }\n- void... | C++ | Apache License 2.0 | google/or-tools | python: Fix linear_solver.i wrapper |
261,230 | 01.04.2021 17:28:12 | -7,200 | 3ffec9e25174c747e282d80ce1d42c2d5efd784b | add /opt/gurobi/ to linux canonical paths | [
{
"change_type": "MODIFY",
"old_path": "ortools/gurobi/environment.cc",
"new_path": "ortools/gurobi/environment.cc",
"diff": "@@ -706,6 +706,10 @@ std::vector<std::string> GurobiDynamicLibraryPotentialPaths() {\n\"/opt/gurobi\", version, \"/linux64/lib/libgurobi\", lib, \".so\"));\npotential_paths.p... | C++ | Apache License 2.0 | google/or-tools | add /opt/gurobi/ to linux canonical paths |
261,230 | 02.04.2021 11:54:52 | -7,200 | 19e93a75090e1c2422878474325ebb60673bb638 | fix bazel for glop | [
{
"change_type": "MODIFY",
"old_path": "ortools/glop/BUILD",
"new_path": "ortools/glop/BUILD",
"diff": "@@ -10,6 +10,18 @@ package(\nSAFE_FP_CODE = [\"-fno-fast-math\"]\n# Revised Simplex LP solver.\n+cc_library(\n+ name = \"pricing\",\n+ hdrs = [\"pricing.h\"],\n+ deps = [\n+ \"//ortools/base\",\n+... | C++ | Apache License 2.0 | google/or-tools | fix bazel for glop |
261,230 | 02.04.2021 11:55:09 | -7,200 | 7a4f8e242cd424f29f6351706c02af7f0f295ca7 | small improvement to fz logging | [
{
"change_type": "MODIFY",
"old_path": "ortools/flatzinc/fz.cc",
"new_path": "ortools/flatzinc/fz.cc",
"diff": "@@ -165,10 +165,12 @@ void LogInFlatzincFormat(const std::string& multi_line_input) {\nstd::cout << std::endl;\nreturn;\n}\n- std::vector<std::string> lines =\n+ const absl::string_view fl... | C++ | Apache License 2.0 | google/or-tools | small improvement to fz logging |
261,218 | 02.04.2021 16:08:32 | -7,200 | ef4405f4ee9cc3d59713d7949e343ecaf62887bb | swig: Remove unneeded int64 typedef | [
{
"change_type": "MODIFY",
"old_path": "ortools/algorithms/python/knapsack_solver.i",
"new_path": "ortools/algorithms/python/knapsack_solver.i",
"diff": "#include \"ortools/algorithms/knapsack_solver.h\"\n%}\n-typedef int64_t int64;\n-typedef uint64_t uint64;\n-\n%ignoreall\n%unignore operations_res... | C++ | Apache License 2.0 | google/or-tools | swig: Remove unneeded int64 typedef |
261,230 | 08.04.2021 18:26:38 | -7,200 | 93384677321e3f96c1e02fbad4ad3a16130dae94 | reindent after int64 -> int64_t change | [
{
"change_type": "MODIFY",
"old_path": "ortools/glop/markowitz.h",
"new_path": "ortools/glop/markowitz.h",
"diff": "@@ -186,8 +186,8 @@ class MatrixNonZeroPattern {\n// elements without extra space, and the size of the inlined vector is 4 times\n// 64 bits.\n//\n- // TODO(user): We could be even mor... | C++ | Apache License 2.0 | google/or-tools | reindent after int64 -> int64_t change |
261,250 | 08.04.2021 22:28:50 | 25,200 | a89b4b1db54a1830db0bd5317a5e8c133ffb4a99 | sat: take advantage of cached constants in CpModel.indexFromConstant() | [
{
"change_type": "MODIFY",
"old_path": "ortools/java/com/google/ortools/sat/CpModel.java",
"new_path": "ortools/java/com/google/ortools/sat/CpModel.java",
"diff": "@@ -1067,9 +1067,8 @@ public final class CpModel {\n}\nint indexFromConstant(long constant) {\n- int index = modelBuilder.getVariablesCo... | C++ | Apache License 2.0 | google/or-tools | sat: take advantage of cached constants in CpModel.indexFromConstant()
Signed-off-by: Lalith Suresh <suresh.lalith@gmail.com> |
261,230 | 11.04.2021 11:27:56 | -7,200 | 58934e4a6ffc6d9aa1b1d69bceabe31af35809a1 | int64 -> int64_t conversion | [
{
"change_type": "MODIFY",
"old_path": "ortools/graph/bellman_ford.cc",
"new_path": "ortools/graph/bellman_ford.cc",
"diff": "@@ -25,7 +25,8 @@ class BellmanFord {\nstatic constexpr int64_t kInfinity = kint64max / 2;\nBellmanFord(int node_count, int start_node,\n- std::function<int64_t(int, int)> gr... | C++ | Apache License 2.0 | google/or-tools | int64 -> int64_t conversion |
261,230 | 11.04.2021 11:44:02 | -7,200 | 3e9473c87051877569ce8da67f3405ec02bc3aba | missing deps in all_protos make target | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.cpp.mk",
"new_path": "makefiles/Makefile.cpp.mk",
"diff": "@@ -162,6 +162,7 @@ PROTO_DEPS = \\\n$(GEN_DIR)/ortools/util/optional_boolean.pb.h \\\n$(GEN_DIR)/ortools/data/jobshop_scheduling.pb.h \\\n$(GEN_DIR)/ortools/data/rcpsp.pb.h \\\n+$(G... | C++ | Apache License 2.0 | google/or-tools | missing deps in all_protos make target |
261,230 | 13.04.2021 11:59:41 | -7,200 | ee6f7db8b9c20681fe6c8034ac96c62c28865c40 | improve rcpsp_sat model; fix python indent/comments | [
{
"change_type": "MODIFY",
"old_path": "examples/python/bus_driver_scheduling_sat.py",
"new_path": "examples/python/bus_driver_scheduling_sat.py",
"diff": "@@ -25,9 +25,9 @@ Constraints:\nimport collections\nimport math\n-from google.protobuf import text_format\nfrom absl import app\nfrom absl impor... | C++ | Apache License 2.0 | google/or-tools | improve rcpsp_sat model; fix python indent/comments |
261,230 | 13.04.2021 14:31:06 | -7,200 | d1d53f014e67f982ca83f1ccd36bbdf866fe0727 | [GLOP] use absl::BigGenRef instead of random_engine | [
{
"change_type": "MODIFY",
"old_path": "ortools/glop/BUILD",
"new_path": "ortools/glop/BUILD",
"diff": "@@ -15,11 +15,11 @@ cc_library(\nhdrs = [\"pricing.h\"],\ndeps = [\n\"//ortools/base\",\n- \"@com_google_absl//absl/random\",\n- \"@com_google_absl//absl/random:bit_gen_ref\",\n\"//ortools/lp_data... | C++ | Apache License 2.0 | google/or-tools | [GLOP] use absl::BigGenRef instead of random_engine |
261,230 | 13.04.2021 16:56:27 | -7,200 | b47c9a88a8fdb586c6e5dc1a985c309093bb6fad | throw an error when calling ** on a CP-SAT linear expr | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/python/cp_model.py",
"new_path": "ortools/sat/python/cp_model.py",
"diff": "@@ -253,6 +253,11 @@ class LinearExpr(object):\n'calling %% on a linear expression is not supported, '\n'please use CpModel.AddModuloEquality')\n+ def __pow__(self, _):\n+ ... | C++ | Apache License 2.0 | google/or-tools | throw an error when calling ** on a CP-SAT linear expr |
261,230 | 13.04.2021 19:19:53 | -7,200 | b60419ff334a45d51d2f0ac05a0c7297d39fcad4 | print a warning when querying x == 0, or min(x, y) in cp_sat python | [
{
"change_type": "MODIFY",
"old_path": "examples/tests/cp_model_test.py",
"new_path": "examples/tests/cp_model_test.py",
"diff": "@@ -671,11 +671,33 @@ class CpModelTest(unittest.TestCase):\nmodel = cp_model.CpModel()\n# Creates the variables.\n- v0 = model.NewBoolVar(\"buggyVarIndexToVarProto\")\n-... | C++ | Apache License 2.0 | google/or-tools | print a warning when querying x == 0, or min(x, y) in cp_sat python |
261,230 | 14.04.2021 08:54:12 | -7,200 | 14832f453339ec30f7cf623d10c0e4da202e6fbd | add more checks for not supported python APIs | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/python/cp_model.py",
"new_path": "ortools/sat/python/cp_model.py",
"diff": "@@ -258,6 +258,29 @@ class LinearExpr(object):\n'calling ** on a linear expression is not supported, '\n'please use CpModel.AddMultiplicationEquality')\n+ def __lshift__(se... | C++ | Apache License 2.0 | google/or-tools | add more checks for not supported python APIs |
261,230 | 14.04.2021 14:34:16 | -7,200 | 813a92f3136eafc96246849e9dbc4ff1b644191e | much more pedantic checks in python CP-SAT | [
{
"change_type": "MODIFY",
"old_path": "examples/python/flexible_job_shop_sat.py",
"new_path": "examples/python/flexible_job_shop_sat.py",
"diff": "@@ -121,7 +121,7 @@ def flexible_jobshop():\nstarts[(job_id, task_id)] = start\n# Add precedence with previous task in the same job.\n- if previous_end:... | C++ | Apache License 2.0 | google/or-tools | much more pedantic checks in python CP-SAT |
261,230 | 14.04.2021 18:45:31 | -7,200 | c0d0cebfb4834b092d38e53945e0a8d0386f777d | fix incomplete propagation of diffn; rename cp-sat python test method | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model_checker.cc",
"new_path": "ortools/sat/cp_model_checker.cc",
"diff": "@@ -829,9 +829,9 @@ class ConstraintChecker {\n!IntervalIsEmpty(yi) && !IntervalIsEmpty(yj)) {\nVLOG(1) << \"Interval \" << i << \"(x=[\" << IntervalStart(xi) << \", \"\n... | C++ | Apache License 2.0 | google/or-tools | fix incomplete propagation of diffn; rename cp-sat python test method |
261,218 | 15.04.2021 02:29:14 | -7,200 | d68f5b4ccf38f4a1f47fbbf2d40a772018040bc4 | Update routing internal doc | [
{
"change_type": "MODIFY",
"old_path": "ortools/constraint_solver/doc/CP.md",
"new_path": "ortools/constraint_solver/doc/CP.md",
"diff": "@@ -104,6 +104,7 @@ def main():\nprint('Problem solved in ', solver.WallTime(), 'ms')\nprint('Memory usage: ', pywrapcp.Solver.MemoryUsage(), 'bytes')\n+\nif __na... | C++ | Apache License 2.0 | google/or-tools | Update routing internal doc |
261,218 | 15.04.2021 02:29:51 | -7,200 | 9008bb620b5066ab3042433cdd5ba68e04f7d736 | Clean java routing sample | [
{
"change_type": "MODIFY",
"old_path": "ortools/constraint_solver/samples/VrpBreaks.java",
"new_path": "ortools/constraint_solver/samples/VrpBreaks.java",
"diff": "@@ -30,8 +30,8 @@ import com.google.ortools.constraintsolver.main;\nimport java.util.logging.Logger;\n// [END import]\n-/// Minimal VRP ... | C++ | Apache License 2.0 | google/or-tools | Clean java routing sample |
261,218 | 15.04.2021 02:31:42 | -7,200 | 90319c7ca4db40c493053578a34e4120b28819be | clean routing sample BUILD | [
{
"change_type": "MODIFY",
"old_path": "ortools/constraint_solver/samples/BUILD",
"new_path": "ortools/constraint_solver/samples/BUILD",
"diff": "@@ -20,12 +20,12 @@ code_sample_cc(name = \"tsp_cities\")\ncode_sample_cc(name = \"tsp_distance_matrix\")\n-code_sample_cc(name = \"vrp\")\n-\ncode_sample... | C++ | Apache License 2.0 | google/or-tools | clean routing sample BUILD |
261,218 | 14.04.2021 16:29:12 | -7,200 | c374cfa908f263e1b0e29bcb3824577b969fd4e8 | Add shebanb to python routing sample | [
{
"change_type": "MODIFY",
"old_path": "ortools/constraint_solver/samples/simple_cp_program.py",
"new_path": "ortools/constraint_solver/samples/simple_cp_program.py",
"diff": "+#!/usr/bin/env python3\n# Copyright 2010-2021 Google LLC\n# Licensed under the Apache License, Version 2.0 (the \"License\"... | C++ | Apache License 2.0 | google/or-tools | Add shebanb to python routing sample |
261,218 | 15.04.2021 02:31:13 | -7,200 | b7f009fa6d5180a760641b909d4e5bc282e2d0a3 | cleanup routing samples | [
{
"change_type": "MODIFY",
"old_path": "ortools/constraint_solver/samples/tsp.cc",
"new_path": "ortools/constraint_solver/samples/tsp.cc",
"diff": "@@ -111,7 +111,8 @@ void Tsp() {\n// [START transit_callback]\nconst auto distance_matrix = GenerateManhattanDistanceMatrix(data.locations);\nconst int ... | C++ | Apache License 2.0 | google/or-tools | cleanup routing samples |
261,254 | 15.04.2021 12:56:01 | -7,200 | c9fb8bb6e866375dc39fd1d69e117be86bac556e | add knapsack solver | [
{
"change_type": "MODIFY",
"old_path": "ortools/algorithms/knapsack_solver.cc",
"new_path": "ortools/algorithms/knapsack_solver.cc",
"diff": "@@ -925,9 +925,8 @@ void Knapsack64ItemsSolver::BuildBestSolution() {\n// ----- KnapsackDynamicProgrammingSolver -----\n// KnapsackDynamicProgrammingSolver so... | C++ | Apache License 2.0 | google/or-tools | add knapsack solver |
261,218 | 16.04.2021 00:21:55 | -7,200 | df9d0119f8a3bdf637cf18ebb6e18b9458ab609c | Update connected_components | [
{
"change_type": "MODIFY",
"old_path": "ortools/graph/connected_components.cc",
"new_path": "ortools/graph/connected_components.cc",
"diff": "@@ -93,7 +93,7 @@ const std::vector<int>& DenseConnectedComponentsFinder::GetComponentRoots() {\nreturn roots_;\n}\n-void DenseConnectedComponentsFinder::AddE... | C++ | Apache License 2.0 | google/or-tools | Update connected_components |
261,230 | 16.04.2021 14:55:05 | -7,200 | 524c4c0b8d482f1fafbc118a193591fac854e267 | fix bug in model copy | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model_presolve.cc",
"new_path": "ortools/sat/cp_model_presolve.cc",
"diff": "@@ -5208,17 +5208,23 @@ ModelCopy::ModelCopy(PresolveContext* context) : context_(context) {}\n// TODO(user): Merge with the phase 1 of the presolve code.\nbool ModelCo... | C++ | Apache License 2.0 | google/or-tools | fix bug in model copy |
261,230 | 16.04.2021 15:43:36 | -7,200 | 55ff1674605df909f3608b1c95472ca50e807b0a | remove spurrious log | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model_presolve.cc",
"new_path": "ortools/sat/cp_model_presolve.cc",
"diff": "@@ -5215,16 +5215,11 @@ bool ModelCopy::ImportAndSimplifyConstraints(\nstarting_constraint_index_ = context_->working_model->constraints_size();\nfor (int c = 0; c < in... | C++ | Apache License 2.0 | google/or-tools | remove spurrious log |
261,218 | 20.04.2021 16:24:07 | -7,200 | a098fcdba357929010c0915517f57173227691fd | release: Fix MacOS scripts | [
{
"change_type": "MODIFY",
"old_path": "tools/release/build_delivery_mac.sh",
"new_path": "tools/release/build_delivery_mac.sh",
"diff": "@@ -295,12 +295,10 @@ function main() {\necho \"ORTOOLS_TOKEN: FOUND\" | tee build.log\nmake print-OR_TOOLS_VERSION | tee -a build.log\n- declare -r ROOT_DIR\n- R... | C++ | Apache License 2.0 | google/or-tools | release: Fix MacOS scripts |
261,230 | 23.04.2021 22:53:04 | -7,200 | ee65d6c24d3d17211038a360f5880ca6c7bd6bcc | improve cuts | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cuts.cc",
"new_path": "ortools/sat/cuts.cc",
"diff": "@@ -2361,9 +2361,9 @@ CutGenerator CreateNoOverlapPrecedenceCutGenerator(\nTrail* trail = model->GetOrCreate<Trail>();\n- result.generate_cuts =\n- [trail, helper, model](\n- const absl::StrongV... | C++ | Apache License 2.0 | google/or-tools | improve cuts |
261,230 | 26.04.2021 11:06:50 | -7,200 | 37901cb24c8cebd2ee71dec1e3f0053d84a48baa | polish balas cuts | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model_solver.cc",
"new_path": "ortools/sat/cp_model_solver.cc",
"diff": "@@ -576,9 +576,11 @@ void TryToAddCutGenerators(const CpModelProto& model_proto,\nstd::vector<IntervalVariable> intervals =\nmapping->Intervals(ct.no_overlap().intervals())... | C++ | Apache License 2.0 | google/or-tools | polish balas cuts |
261,218 | 23.04.2021 15:52:11 | -7,200 | d6b3090d3a780d4536aa0c08cd8db4623384dc4a | java: Bump jna-platform 5.5.0 -> 5.8.0 (Fix | [
{
"change_type": "MODIFY",
"old_path": "cmake/java.cmake",
"new_path": "cmake/java.cmake",
"diff": "@@ -42,7 +42,7 @@ set(JAVA_PACKAGE_PATH src/main/java/com/google/ortools)\nset(JAVA_TEST_PATH src/test/java/com/google/ortools)\nset(JAVA_RESOURCES_PATH src/main/resources)\nif(APPLE)\n- set(NATIVE_ID... | C++ | Apache License 2.0 | google/or-tools | java: Bump jna-platform 5.5.0 -> 5.8.0 (Fix #2519) |
261,218 | 23.04.2021 16:51:38 | -7,200 | 17032f68fbe4b214ddedc46b0f7352c871b9266f | java: Use ortools patch for dependencies in pom.xml | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.java.mk",
"new_path": "makefiles/Makefile.java.mk",
"diff": "@@ -543,6 +543,8 @@ $$(TEMP_JAVA_DIR)/$1/%/pom.xml: \\\n$$(SED) -i -e 's/@PROJECT_VERSION_MAJOR@/$$(OR_TOOLS_MAJOR)/' \\\n$$(TEMP_JAVA_DIR)$$S$1$$S$$*$$Spom.xml\n$$(SED) -i -e 's/@... | C++ | Apache License 2.0 | google/or-tools | java: Use ortools patch for dependencies in pom.xml |
261,218 | 29.04.2021 01:07:54 | -7,200 | 315a7e4d08059f355de2f6612727865c84338e48 | release: Fix macos script | [
{
"change_type": "MODIFY",
"old_path": "tools/release/build_delivery_mac.sh",
"new_path": "tools/release/build_delivery_mac.sh",
"diff": "@@ -188,6 +188,7 @@ function build_fz() {\nmake fz -l 4 UNIX_PYTHON_VER=3.9\necho \"DONE\" | tee -a build.log\n+ mv or-tools_*.tar.gz export/\necho \"${ORTOOLS_BR... | C++ | Apache License 2.0 | google/or-tools | release: Fix macos script |
261,230 | 03.05.2021 12:10:56 | -7,200 | bd43a1c00418cf0b3344446eb7404cd6ca1b4f60 | rename cuts, improve ref | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cuts.h",
"new_path": "ortools/sat/cuts.h",
"diff": "@@ -63,6 +63,14 @@ class ImpliedBoundsProcessor {\ninteger_trail_(integer_trail),\nimplied_bounds_(implied_bounds) {}\n+ // See if some of the implied bounds equation are violated and add them to\... | C++ | Apache License 2.0 | google/or-tools | rename cuts, improve ref |
261,230 | 03.05.2021 12:11:59 | -7,200 | 3d1ac12594586ea124d430cb4ccf21b987e06763 | [CP-SAT] deprecate SearchAllSolutions and SolveWithSolutionCallback | [
{
"change_type": "MODIFY",
"old_path": "ortools/java/com/google/ortools/sat/CpModel.java",
"new_path": "ortools/java/com/google/ortools/sat/CpModel.java",
"diff": "@@ -1054,7 +1054,6 @@ public final class CpModel {\n/**\n* Write the model as a protocol buffer to 'file'.\n*\n- *\n* @param file file t... | C++ | Apache License 2.0 | google/or-tools | [CP-SAT] deprecate SearchAllSolutions and SolveWithSolutionCallback |
261,230 | 03.05.2021 12:20:46 | -7,200 | 56627a317dcd1298aab2889125d3d1fbe0a8bb6a | speedup .NET example | [
{
"change_type": "MODIFY",
"old_path": "examples/dotnet/NursesSat.cs",
"new_path": "examples/dotnet/NursesSat.cs",
"diff": "@@ -18,13 +18,14 @@ using Google.OrTools.Sat;\npublic class NurseSolutionObserver : CpSolverSolutionCallback\n{\n- public NurseSolutionObserver(IntVar[,,] shifts, int num_nurse... | C++ | Apache License 2.0 | google/or-tools | speedup .NET example |
261,230 | 06.05.2021 13:48:32 | -7,200 | e638b0298e64aab5cd262f7b49dac94cad64539f | rewrite part of the lns code; fix race in lns code | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/BUILD",
"new_path": "ortools/sat/BUILD",
"diff": "@@ -1206,6 +1206,7 @@ cc_library(\n\"//ortools/util:adaptative_parameter_value\",\n\"//ortools/util:random_engine\",\n\"//ortools/util:time_limit\",\n+ \"@com_google_absl//absl/container:flat_hash_s... | C++ | Apache License 2.0 | google/or-tools | rewrite part of the lns code; fix race in lns code |
261,259 | 07.05.2021 00:13:55 | -7,200 | 338166b8d4428fb571cec1811a0d2617a05b4d2a | [CP-SAT][Python] Use DeprecationWarning | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/python/cp_model.py",
"new_path": "ortools/sat/python/cp_model.py",
"diff": "@@ -52,6 +52,7 @@ import collections\nimport numbers\nimport threading\nimport time\n+import warnings\nfrom ortools.sat import cp_model_pb2\nfrom ortools.sat import sat_par... | C++ | Apache License 2.0 | google/or-tools | [CP-SAT][Python] Use DeprecationWarning |
261,230 | 18.05.2021 11:25:04 | -7,200 | 65a3f927064ec6fa491affb25adcfed3c6c190e5 | follow heuristic order in flatzinc fixed search, even if the model is presolved away | [
{
"change_type": "MODIFY",
"old_path": "ortools/flatzinc/cp_model_fz_solver.cc",
"new_path": "ortools/flatzinc/cp_model_fz_solver.cc",
"diff": "@@ -1079,6 +1079,7 @@ void SolveFzWithCpModelProto(const fz::Model& fz_model,\n}\n} else {\nm.parameters.set_search_branching(SatParameters::FIXED_SEARCH);\... | C++ | Apache License 2.0 | google/or-tools | follow heuristic order in flatzinc fixed search, even if the model is presolved away |
261,264 | 18.05.2021 13:46:34 | -3,600 | 78e463249aefcff6cc8d8241f0a8c1aaacb81533 | Align C# ShiftSchedulingSat example to Python version
Changes in changesets and were not applied to C# version | [
{
"change_type": "MODIFY",
"old_path": "examples/dotnet/ShiftSchedulingSat.cs",
"new_path": "examples/dotnet/ShiftSchedulingSat.cs",
"diff": "@@ -390,7 +390,7 @@ public class ShiftSchedulingSat\n// Forbid sequences that are too short.\nforeach (var length in Range(1, hardMin))\n{\n- foreach (var sta... | C++ | Apache License 2.0 | google/or-tools | Align C# ShiftSchedulingSat example to Python version
Changes in changesets 4ececbe and ab810ee were not applied to C# version |
261,218 | 20.05.2021 17:54:57 | -7,200 | dc803630d37144730247a35bae231915890563a6 | Update .Net examples | [
{
"change_type": "MODIFY",
"old_path": "examples/dotnet/JobshopSat.cs",
"new_path": "examples/dotnet/JobshopSat.cs",
"diff": "+// Copyright 2010-2021 Google LLC\n+// Licensed under the Apache License, Version 2.0 (the \"License\");\n+// you may not use this file except in compliance with the License... | C++ | Apache License 2.0 | google/or-tools | Update .Net examples |
261,218 | 20.05.2021 17:56:00 | -7,200 | 48d9111ce554c5732af33df68963a047ce19de7a | Clean few examples | [
{
"change_type": "MODIFY",
"old_path": "examples/java/LinearAssignmentAPI.java",
"new_path": "examples/java/LinearAssignmentAPI.java",
"diff": "-// Copyright 2010-2021 Google\n+// Copyright 2010-2021 Google LLC\n// Licensed under the Apache License, Version 2.0 (the \"License\");\n// you may not use... | C++ | Apache License 2.0 | google/or-tools | Clean few examples |
261,218 | 21.05.2021 09:22:41 | -7,200 | 8b8b32c7e780fbb6e099c17f9b0ead2707ec16cc | Sync .Net examples | [
{
"change_type": "RENAME",
"old_path": "examples/contrib/furniture_moving_intervals.cs",
"new_path": "examples/dotnet/furniture_moving_intervals.cs",
"diff": ""
},
{
"change_type": "RENAME",
"old_path": "examples/contrib/furniture_moving_intervals.csproj",
"new_path": "examples/dotne... | C++ | Apache License 2.0 | google/or-tools | Sync .Net examples |
261,218 | 21.05.2021 18:01:16 | -7,200 | e44579c859ff7502f40f4d4ed79d5ea1fa5455be | Reapply fixes lost in shift_scheduling_sat.py
related to | [
{
"change_type": "MODIFY",
"old_path": "examples/python/shift_scheduling_sat.py",
"new_path": "examples/python/shift_scheduling_sat.py",
"diff": "@@ -90,13 +90,13 @@ def add_soft_sequence_constraint(model, works, hard_min, soft_min, min_cost,\n# Forbid sequences that are too short.\nfor length in ra... | C++ | Apache License 2.0 | google/or-tools | Reapply fixes lost in shift_scheduling_sat.py
related to #2396 |
261,218 | 21.05.2021 18:11:02 | -7,200 | 78a09d38deea31518d3a2a525035a0eb798e699c | dotnet: Sync ShiftSchedulingSat with the Python one | [
{
"change_type": "MODIFY",
"old_path": "examples/dotnet/ShiftSchedulingSat.cs",
"new_path": "examples/dotnet/ShiftSchedulingSat.cs",
"diff": "@@ -46,7 +46,7 @@ public class ShiftSchedulingSat\n(3, 0, 5, -2),\n// Employee 5 wants a night shift on the second Thursday.\n(5, 3, 10, -2),\n- // Employee 2... | C++ | Apache License 2.0 | google/or-tools | dotnet: Sync ShiftSchedulingSat with the Python one |
261,230 | 25.05.2021 23:05:49 | -7,200 | ac89b59db9e1dfd84a08169e816eebc15a933c14 | remove obsolete LOG macro | [
{
"change_type": "MODIFY",
"old_path": "ortools/base/logging.h",
"new_path": "ortools/base/logging.h",
"diff": "@@ -188,19 +188,12 @@ void FixFlagsAndEnvironmentForSwig();\n// // that can't be accomplished with just VLOG(2) << ...;\n// }\n//\n-// There are also VLOG_IF, VLOG_EVERY_N and VLOG_IF_EVER... | C++ | Apache License 2.0 | google/or-tools | remove obsolete LOG macro |
261,230 | 08.06.2021 16:00:14 | -7,200 | e48932952993e7cf6b92dbbf5818d813c44b12a0 | [CP-SAT] add linear relaxation for the routes constraint | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/linear_relaxation.cc",
"new_path": "ortools/sat/linear_relaxation.cc",
"diff": "@@ -536,6 +536,59 @@ void AppendCircuitRelaxation(const ConstraintProto& ct, Model* model,\n}\n}\n+void AppendRoutesRelaxation(const ConstraintProto& ct, Model* model,\... | C++ | Apache License 2.0 | google/or-tools | [CP-SAT] add linear relaxation for the routes constraint |
261,230 | 08.06.2021 16:00:30 | -7,200 | ceda0fb6f95c15e84e92f76e13e92f3b6992364f | polish no_overlap presolve | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model_presolve.cc",
"new_path": "ortools/sat/cp_model_presolve.cc",
"diff": "@@ -3005,11 +3005,11 @@ bool CpModelPresolver::PresolveNoOverlap(ConstraintProto* ct) {\nif (context_->ModelIsUnsat()) return false;\nNoOverlapConstraintProto* proto = ... | C++ | Apache License 2.0 | google/or-tools | polish no_overlap presolve |
261,230 | 08.06.2021 18:27:20 | -7,200 | 983ef0ef5111f256d19695cab9bbcf9ace02ab43 | [CP-SAT] improve no_overlap presolve | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model_presolve.cc",
"new_path": "ortools/sat/cp_model_presolve.cc",
"diff": "@@ -3027,6 +3027,45 @@ bool CpModelPresolver::PresolveNoOverlap(ConstraintProto* ct) {\n}\n}\n+ // Split constraints in disjoint sets.\n+ {\n+ if (proto->intervals_size... | C++ | Apache License 2.0 | google/or-tools | [CP-SAT] improve no_overlap presolve |
261,226 | 08.06.2021 11:01:02 | -28,800 | b72093332dde36d6c39941b635c6d3c517e5e432 | fix Loader may not load native lib correctly due to resource name conflicting. | [
{
"change_type": "MODIFY",
"old_path": "cmake/java.cmake",
"new_path": "cmake/java.cmake",
"diff": "@@ -125,7 +125,7 @@ endforeach()\n## Java Native Maven Package ##\n#################################\nset(JAVA_NATIVE_PROJECT_PATH ${PROJECT_BINARY_DIR}/java/${JAVA_NATIVE_PROJECT})\n-file(MAKE_DIRECT... | C++ | Apache License 2.0 | google/or-tools | fix #2575: Loader may not load native lib correctly due to resource name conflicting. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.