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
28.03.2017 16:13:30
-7,200
395e170563ef81ec5eb4e6bf8dacd6dc66799b3c
update examples after library changes
[ { "change_type": "MODIFY", "old_path": "examples/cpp/cvrptw_with_breaks.cc", "new_path": "examples/cpp/cvrptw_with_breaks.cc", "diff": "#include \"base/commandlineflags.h\"\n#include \"base/integral_types.h\"\n#include \"base/logging.h\"\n+#include \"base/join.h\"\n#include \"constraint_solver/routi...
C++
Apache License 2.0
google/or-tools
update examples after library changes
261,230
28.03.2017 22:21:49
-7,200
2788e077581b757780be6bfe27781f3a574c3104
store the CpModelLoader class inside the solver, checks that Solve() is called only once; add a getter
[ { "change_type": "MODIFY", "old_path": "src/constraint_solver/constraint_solver.h", "new_path": "src/constraint_solver/constraint_solver.h", "diff": "@@ -994,6 +994,7 @@ class Solver {\nconst std::vector<SearchMonitor*>& monitors,\nDecisionBuilder* const db) const;\n// Loads the model into the solve...
C++
Apache License 2.0
google/or-tools
store the CpModelLoader class inside the solver, checks that Solve() is called only once; add a getter
261,230
29.03.2017 18:10:03
-7,200
1423175cd2aebcdac9012c329194770f088690a3
first shot at bazel support for the CP library
[ { "change_type": "ADD", "old_path": null, "new_path": "src/constraint_solver/BUILD", "diff": "+package(default_visibility = [\"//visibility:public\"])\n+\n+proto_library(\n+ name = \"assignment_proto\",\n+ srcs = [\"assignment.proto\"],\n+)\n+\n+cc_proto_library(\n+ name = \"assignment_cc_proto\",\n...
C++
Apache License 2.0
google/or-tools
first shot at bazel support for the CP library
261,230
30.03.2017 11:50:10
-7,200
3e4197b206da8de9f802ab2323446056578fd454
compile routing and tsp example in bazel
[ { "change_type": "MODIFY", "old_path": "examples/cpp/BUILD", "new_path": "examples/cpp/BUILD", "diff": "@@ -94,3 +94,15 @@ cc_binary(\n\"@or_tools_libraries//constraint_solver:cp\",\n],\n)\n+\n+cc_binary(\n+ name = \"tsp\",\n+ srcs = [\"tsp.cc\"],\n+ deps = [\n+ \"@com_google_protobuf_cc//:protobuf\...
C++
Apache License 2.0
google/or-tools
compile routing and tsp example in bazel
261,230
30.03.2017 13:09:25
-7,200
4c5af246e6616e9ec7dea821c8b6b5ec14b7f293
compile BOP library in bazel
[ { "change_type": "MODIFY", "old_path": "src/algorithms/BUILD", "new_path": "src/algorithms/BUILD", "diff": "@@ -26,10 +26,7 @@ cc_library(\ndeps = [\n\":knapsack_solver_for_interface_lib\",\n\"//base\",\n- \"//linear_solver:linear_solver_glop\",\n- # \"//linear_solver:linear_solver_cbc\",\n- # \"//l...
C++
Apache License 2.0
google/or-tools
compile BOP library in bazel
261,230
30.03.2017 13:21:53
-7,200
2a88d5991f157b114e981d68fc8450e915b0ffa0
add bop to the solve example
[ { "change_type": "MODIFY", "old_path": "examples/cpp/BUILD", "new_path": "examples/cpp/BUILD", "diff": "+cc_binary(\n+ name = \"cryptarithm\",\n+ srcs = [\"cryptarithm.cc\"],\n+ deps = [\n+ \"@com_google_protobuf_cc//:protobuf\",\n+ \"@or_tools_libraries//base\",\n+ \"@or_tools_libraries//constraint...
C++
Apache License 2.0
google/or-tools
add bop to the solve example
261,230
30.03.2017 13:54:29
-7,200
90dcccf9777a5a103d3e767e03cdbb17719f0197
update the strawberry field example to use GLOP
[ { "change_type": "MODIFY", "old_path": "examples/cpp/strawberry_fields_with_column_generation.cc", "new_path": "examples/cpp/strawberry_fields_with_column_generation.cc", "diff": "DEFINE_bool(colgen_verbose, false, \"print verbosely\");\nDEFINE_bool(colgen_complete, false, \"generate all columns ini...
C++
Apache License 2.0
google/or-tools
update the strawberry field example to use GLOP
261,230
30.03.2017 13:54:42
-7,200
d7b510044f88c46f2b89f1e5a2dde853248304eb
add more examples to examples/cpp/BUILD for bazel
[ { "change_type": "MODIFY", "old_path": "examples/cpp/BUILD", "new_path": "examples/cpp/BUILD", "diff": "+cc_binary(\n+ name = \"costas_array\",\n+ srcs = [\"costas_array.cc\"],\n+ deps = [\n+ \"@or_tools_libraries//base\",\n+ \"@or_tools_libraries//base:random\",\n+ \"@or_tools_libraries//constraint...
C++
Apache License 2.0
google/or-tools
add more examples to examples/cpp/BUILD for bazel
261,230
30.03.2017 14:50:36
-7,200
c3c1bdb4157b8c02c389011f1403e4a121654180
first unit test using gtest
[ { "change_type": "MODIFY", "old_path": "src/WORKSPACE", "new_path": "src/WORKSPACE", "diff": "@@ -24,3 +24,9 @@ http_archive(\nstrip_prefix = \"protobuf-b4b0e304be5a68de3d0ee1af9b286f958750f5e4\",\nsha256 = \"ff771a662fb6bd4d3cc209bcccedef3e93980a49f71df1e987f6afa3bcdcba3a\",\n)\n+\n+new_http_archiv...
C++
Apache License 2.0
google/or-tools
first unit test using gtest
261,230
30.03.2017 15:01:10
-7,200
4544a26c9a489b2515e5f9a32a42d5061b287f70
simplify usage of googletest
[ { "change_type": "MODIFY", "old_path": "src/WORKSPACE", "new_path": "src/WORKSPACE", "diff": "@@ -29,4 +29,5 @@ new_http_archive(\nname = \"gtest\",\nurl = \"https://github.com/google/googletest/archive/release-1.8.0.zip\",\nbuild_file = \"gtest.BUILD\",\n+ strip_prefix = \"googletest-release-1.8.0/...
C++
Apache License 2.0
google/or-tools
simplify usage of googletest
261,230
30.03.2017 22:34:58
-7,200
14b18ba11aab87422d8694d5da9619ad27977020
test model load in C#
[ { "change_type": "MODIFY", "old_path": "examples/tests/testcp.cs", "new_path": "examples/tests/testcp.cs", "diff": "@@ -603,6 +603,20 @@ public class CsTestCpOperator\nCpModel model = solver.ExportModel();\nConsole.WriteLine(model);\n+\n+ Solver copy = new Solver(\"loader\");\n+ copy.LoadModel(model...
C++
Apache License 2.0
google/or-tools
test model load in C#
261,230
31.03.2017 09:58:45
-7,200
2e86d9ac8399619850cada88108c11039ac55299
bazel build file for flatzinc
[ { "change_type": "ADD", "old_path": null, "new_path": "src/flatzinc/BUILD", "diff": "+package(default_visibility = [\"//visibility:public\"])\n+\n+cc_library(\n+ name = \"logging\",\n+ srcs = [\"logging.cc\"],\n+ hdrs = [\"logging.h\"],\n+ deps = [\n+ \"//base\",\n+ ],\n+)\n+\n+cc_library(\n+ name =...
C++
Apache License 2.0
google/or-tools
bazel build file for flatzinc
261,230
31.03.2017 09:26:33
0
e723fc15a72347cb553f034faaa021df93176fd7
switch windows scip support to use precompiled libraries
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.third_party.win.mk", "new_path": "makefiles/Makefile.third_party.win.mk", "diff": "@@ -353,9 +353,9 @@ Makefile.local: makefiles/Makefile.third_party.$(SYSTEM).mk\n@echo $(SELECTED_CSC_BINARY)>> Makefile.local\n@echo # >> Makefile.local\n@ec...
C++
Apache License 2.0
google/or-tools
switch windows scip support to use precompiled libraries
261,230
07.04.2017 13:50:29
-7,200
3736072d20d4e6c87c7584478a2d6ed2d512726b
speed up timetabling in sat
[ { "change_type": "MODIFY", "old_path": "src/sat/intervals.h", "new_path": "src/sat/intervals.h", "diff": "@@ -137,6 +137,7 @@ class SchedulingConstraintHelper {\n// Note that for tasks with variable durations, we don't necessarily have\n// duration-min between the the XXX-min and XXX-max value.\nInt...
C++
Apache License 2.0
google/or-tools
speed up timetabling in sat
261,230
09.04.2017 21:40:29
-7,200
ef825804b55c42f07cd16e499ac07bc9604df9eb
fix compilation on visual studio 2013
[ { "change_type": "MODIFY", "old_path": "src/util/piecewise_linear_function.cc", "new_path": "src/util/piecewise_linear_function.cc", "diff": "@@ -357,47 +357,51 @@ PiecewiseLinearFunction* PiecewiseLinearFunction::CreateOneSegmentFunction(\nPiecewiseLinearFunction* PiecewiseLinearFunction::CreateRig...
C++
Apache License 2.0
google/or-tools
fix compilation on visual studio 2013
261,230
09.04.2017 21:42:09
-7,200
c40247b9ec8a74e03de23a765d64a710dfcce993
add NumXXX on CpModelLoader
[ { "change_type": "MODIFY", "old_path": "src/constraint_solver/constraint_solveri.h", "new_path": "src/constraint_solver/constraint_solveri.h", "diff": "@@ -2079,8 +2079,12 @@ class CpModelLoader {\n// Returns stored integer expression.\nIntExpr* IntegerExpression(int index) const;\n+ // Returns the ...
C++
Apache License 2.0
google/or-tools
add NumXXX on CpModelLoader
261,230
09.04.2017 21:56:47
-7,200
c9b8b7b3e6adceee1c5a88b2d89891da04e82af6
Fix routing deps
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.cpp.mk", "new_path": "makefiles/Makefile.cpp.mk", "diff": "@@ -65,7 +65,7 @@ ortoolslibs: $(OR_TOOLS_LIBS)\nCVRPTW_LIBS = $(LIB_DIR)/$(LIB_PREFIX)cvrptw_lib.$(LIB_SUFFIX)\nCVRPTW_DEPS = \\\n$(EX_DIR)/cpp/cvrptw_lib.h \\\n- $(ROUTING_DEPS)\n+...
C++
Apache License 2.0
google/or-tools
Fix routing deps
261,230
18.04.2017 00:01:27
-7,200
be1b75a8f6071c2800c3ba799678fefe7f83fcf4
fix makefiles for visual studio 2013 64 bit; bump protobuf to 3.2.0
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.port", "new_path": "makefiles/Makefile.port", "diff": "@@ -90,7 +90,7 @@ endif\n# Windows specific part.\nifeq (\"$(SYSTEM)\",\"win\")\n# Detect 32/64bit\n- ifeq (\"$(Platform)\", \"X64\")\n+ ifeq (\"$(Platform)\", \"X64\") # Visual Studio 2...
C++
Apache License 2.0
google/or-tools
fix makefiles for visual studio 2013 64 bit; bump protobuf to 3.2.0
261,230
18.04.2017 00:08:19
-7,200
787d8075c231c17d6ec6cc23a77f8a39a74fabc2
various compilation fixed for visual studio 2013
[ { "change_type": "MODIFY", "old_path": "src/sat/integer.cc", "new_path": "src/sat/integer.cc", "diff": "@@ -1177,7 +1177,7 @@ std::function<LiteralIndex()> FirstUnassignedVarAtItsMinHeuristic(\n.Index();\n}\n}\n- return kNoLiteralIndex;\n+ return LiteralIndex(kNoLiteralIndex);\n};\n}\n@@ -1197,7 +11...
C++
Apache License 2.0
google/or-tools
various compilation fixed for visual studio 2013
261,230
19.04.2017 16:51:45
-7,200
b43447dde9d5dfada73d42d558d6fadc80a93acf
bump gflags to 2.2.0
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.third_party.unix.mk", "new_path": "makefiles/Makefile.third_party.unix.mk", "diff": "# SVN tags of dependencies to checkout.\n-GFLAGS_TAG = 2.1.2\n+GFLAGS_TAG = 2.2.0\nPROTOBUF_TAG = 3.2.0\nCBC_TAG = 2.9.8\nSWIG_TAG = 3.0.12\n" }, { ...
C++
Apache License 2.0
google/or-tools
bump gflags to 2.2.0
261,230
19.04.2017 21:01:24
-7,200
1f9d096e9d0fc02b04ac75052c7ee4ae8db2c6d5
cleanup java flags in makefiles
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.port", "new_path": "makefiles/Makefile.port", "diff": "@@ -51,7 +51,7 @@ ifeq (\"$(SYSTEM)\",\"unix\")\n/usr/lib/jvm/java-7-openjdk-i386\nendif\n- SELECTED_JDK_DEF = JDK_DIRECTORY = $(firstword $(wildcard $(CANDIDATE_JDK_ROOTS)))\n+ JDK_DIRE...
C++
Apache License 2.0
google/or-tools
cleanup java flags in makefiles
261,230
20.04.2017 00:06:17
-7,200
b3e7e1edab5c4f98004df390a4c3e7e15afd77f7
fix make third_party on windows after gflags update
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.third_party.win.mk", "new_path": "makefiles/Makefile.third_party.win.mk", "diff": "@@ -223,12 +223,13 @@ dependencies/install/lib/gflags.lib: dependencies/sources/gflags-$(GFLAGS_TAG)/I\ndependencies/sources/gflags-$(GFLAGS_TAG)/INSTALL.md: ...
C++
Apache License 2.0
google/or-tools
fix make third_party on windows after gflags update
261,230
20.04.2017 13:43:01
-7,200
4171c41fc00ee03d9f520be61cd5dfc48ea95f31
regroup bazel files
[ { "change_type": "MODIFY", "old_path": "src/WORKSPACE", "new_path": "src/WORKSPACE", "diff": "@@ -28,6 +28,6 @@ http_archive(\nnew_http_archive(\nname = \"gtest\",\nurl = \"https://github.com/google/googletest/archive/release-1.8.0.zip\",\n- build_file = \"gtest.BUILD\",\n+ build_file = \"//bazel:gt...
C++
Apache License 2.0
google/or-tools
regroup bazel files
261,230
20.04.2017 14:21:27
-7,200
fce895d29e0a3d90eb83020718e8b365c868a054
move glpk.BUILD to bazel
[ { "change_type": "MODIFY", "old_path": "src/WORKSPACE", "new_path": "src/WORKSPACE", "diff": "@@ -36,5 +36,5 @@ new_http_archive(\nname = \"glpk\",\nurl = \"http://ftp.gnu.org/gnu/glpk/glpk-4.52.tar.gz\",\nsha256 = \"9a5dab356268b4f177c33e00ddf8164496dc2434e83bd1114147024df983a3bb\",\n- build_file =...
C++
Apache License 2.0
google/or-tools
move glpk.BUILD to bazel
261,230
20.04.2017 18:24:00
-7,200
6921119f6e150e13a84b329ad13d23b77aa25322
fix path to glpk build
[ { "change_type": "MODIFY", "old_path": "examples/WORKSPACE", "new_path": "examples/WORKSPACE", "diff": "@@ -33,6 +33,6 @@ new_http_archive(\nname = \"glpk\",\nurl = \"http://ftp.gnu.org/gnu/glpk/glpk-4.52.tar.gz\",\nsha256 = \"9a5dab356268b4f177c33e00ddf8164496dc2434e83bd1114147024df983a3bb\",\n- bu...
C++
Apache License 2.0
google/or-tools
fix path to glpk build
261,230
21.04.2017 11:39:28
-7,200
a32c3819219d0255616083663e4b8056ef9f7445
fix vs2013 issue
[ { "change_type": "MODIFY", "old_path": "src/constraint_solver/routing.cc", "new_path": "src/constraint_solver/routing.cc", "diff": "@@ -4651,6 +4651,14 @@ RoutingDimension::RoutingDimension(RoutingModel* model,\nconst std::string& name, SelfBased)\n: RoutingDimension(model, std::move(vehicle_capacit...
C++
Apache License 2.0
google/or-tools
fix vs2013 issue
261,230
21.04.2017 16:41:23
-7,200
c5c710162eec1c561099af297f203a12dcd4c4d8
fix make archive
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.archive.mk", "new_path": "makefiles/Makefile.archive.mk", "diff": "@@ -109,7 +109,7 @@ endif\ndotnet_archive: csharp\n$(COPY) bin$SGoogle.Protobuf.dll temp$S$(INSTALL_DIR)$Sbin\n- $(COPY) bin$S$(CLR_DLL_NAME).dll temp$S$(INSTALL_DIR)$Sbin\n+...
C++
Apache License 2.0
google/or-tools
fix make archive
261,230
27.04.2017 09:31:10
-7,200
5d3b3ab7c2085d14795cd6f8f37229dbc719ff84
fix sat_cnf_reader
[ { "change_type": "MODIFY", "old_path": "examples/cpp/sat_cnf_reader.h", "new_path": "examples/cpp/sat_cnf_reader.h", "diff": "@@ -103,7 +103,7 @@ class SatCnfReader {\nreturn problem_name;\n}\n- int64 StringPieceAtoi(string_view input) {\n+ int64 StringPieceAtoi(const StringPiece& input) {\n// Hack:...
C++
Apache License 2.0
google/or-tools
fix sat_cnf_reader
261,230
28.04.2017 10:26:21
-7,200
6252b430b4527ae8bcc819d2ba6cd080e6e9f338
better hashing of IntType
[ { "change_type": "MODIFY", "old_path": "ortools/base/int_type.h", "new_path": "ortools/base/int_type.h", "diff": "@@ -331,7 +331,7 @@ namespace std {\ntemplate <typename IntTypeName, typename ValueType>\nstruct hash<IntType<IntTypeName, ValueType> > {\nsize_t operator()(const IntType<IntTypeName, Va...
C++
Apache License 2.0
google/or-tools
better hashing of IntType
261,230
28.04.2017 15:59:37
-7,200
381363fd1a5f7cc581839e3e2353ce01375315e4
more cleaning along the way
[ { "change_type": "ADD", "old_path": null, "new_path": "ortools/base/iterator_adaptors.h", "diff": "+// Copyright 2010-2014 Google\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...
C++
Apache License 2.0
google/or-tools
more cleaning along the way
261,230
11.05.2017 15:01:35
-7,200
b6632140a5559aa2a6d45448edc3802ab83e013d
bump version to 6.0; fix make archive and make pypi_archive
[ { "change_type": "MODIFY", "old_path": "Makefile", "new_path": "Makefile", "diff": "@@ -7,8 +7,8 @@ help:\n@echo \" - .NET: csharp test_csharp clean_csharp \"\n@echo \" - all: all test clean\"\n-OR_TOOLS_MAJOR = 5\n-OR_TOOLS_MINOR = 1\n+OR_TOOLS_MAJOR = 6\n+OR_TOOLS_MINOR = 0\n# OR_ROOT is the minim...
C++
Apache License 2.0
google/or-tools
bump version to 6.0; fix make archive and make pypi_archive
261,230
16.05.2017 10:28:31
-7,200
d2cd773edbcad7269da9cccee173161c60f79a27
build wheel on linux too
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.python.mk", "new_path": "makefiles/Makefile.python.mk", "diff": "@@ -313,7 +313,7 @@ else\nifeq ($(PLATFORM),MACOSX)\ncd $(PYPI_ARCHIVE_TEMP_DIR)/ortools && $(PYTHON_EXECUTABLE) setup.py bdist_egg bdist_wheel\nelse\n- cd $(PYPI_ARCHIVE_TEMP_...
C++
Apache License 2.0
google/or-tools
build wheel on linux too
261,230
16.05.2017 10:43:33
-7,200
347186ecaec3e612c7dd20876eceb2924888d37f
sync with internal code; minor changes
[ { "change_type": "MODIFY", "old_path": "ortools/base/file.cc", "new_path": "ortools/base/file.cc", "diff": "#include <sys/stat.h>\n#include <sys/types.h>\n+#include \"ortools/base/join.h\"\n#if defined(_MSC_VER)\n#include <io.h>\n#define access _access\n#include \"ortools/base/file.h\"\n#include \"o...
C++
Apache License 2.0
google/or-tools
sync with internal code; minor changes
261,230
16.05.2017 08:59:45
0
fb57f589e13c07d9089dc342362db4f135a36cd9
fix vs2015 protoc call
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.win.mk", "new_path": "makefiles/Makefile.win.mk", "diff": "@@ -10,7 +10,7 @@ GEN_DIR = $(OR_ROOT)src\\\\gen\nOBJ_DIR = $(OR_ROOT)objs\nSRC_DIR = $(OR_ROOT).\nEX_DIR = $(OR_ROOT)examples\n-INC_DIR = $(OR_ROOT_FULL)\n+INC_DIR = $(OR_ROOT).\nLI...
C++
Apache License 2.0
google/or-tools
fix vs2015 protoc call
261,230
16.05.2017 09:15:49
0
6ae15260acb9859b79cc339da154452c17e22a01
fix makefile paths on windows
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.third_party.win.mk", "new_path": "makefiles/Makefile.third_party.win.mk", "diff": "@@ -31,24 +31,20 @@ MISSING_DIRECTORIES = \\\nobjs/sat \\\nobjs/swig \\\nobjs/util \\\n- src/gen/algorithms \\\n- src/gen/bop \\\n- src/gen/com/google/ortools...
C++
Apache License 2.0
google/or-tools
fix makefile paths on windows
261,230
16.05.2017 09:44:07
0
81318fc771edff0628e0890a0bd7d7dd8f8889cb
fix c# paths
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.csharp.mk", "new_path": "makefiles/Makefile.csharp.mk", "diff": "@@ -249,7 +249,7 @@ $(BIN_DIR)/$(CLR_ORTOOLS_DLL_NAME)$(DLL): \\\n$(GEN_DIR)/com/google/ortools/constraintsolver/RoutingEnums.g.cs\\\n$(OR_TOOLS_LIBS)\nifeq ($(SYSTEM),win)\n- ...
C++
Apache License 2.0
google/or-tools
fix c# paths
261,230
17.05.2017 09:08:48
0
23f937b8346146e7d47f4eb301e0070485284402
fix gflags install on windows
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.third_party.win.mk", "new_path": "makefiles/Makefile.third_party.win.mk", "diff": "@@ -207,7 +207,6 @@ dependencies/install/lib/gflags.lib: dependencies/sources/gflags-$(GFLAGS_TAG)/I\ndependencies/sources/gflags-$(GFLAGS_TAG)/INSTALL.md: de...
C++
Apache License 2.0
google/or-tools
fix gflags install on windows
261,230
17.05.2017 11:11:26
-7,200
821aaa579c859b64b2b8fe47bd91da6f82e1386c
fix python build, do not build wheel on linux yet
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.python.mk", "new_path": "makefiles/Makefile.python.mk", "diff": "@@ -54,9 +54,9 @@ clean_python:\n-$(DEL) $(LIB_DIR)$S_pywrap*.$(SWIG_LIB_SUFFIX)\n-$(DEL) $(OBJ_DIR)$Sswig$S*python_wrap.$O\n-install_python_modules: dependencies/sources/proto...
C++
Apache License 2.0
google/or-tools
fix python build, do not build wheel on linux yet
261,227
19.05.2017 14:50:07
-7,200
7c7a1f76aa43db03cb8fcfc2c572ba6f1c771bb9
remove comment ambiguity
[ { "change_type": "MODIFY", "old_path": "ortools/constraint_solver/constraint_solver.h", "new_path": "ortools/constraint_solver/constraint_solver.h", "diff": "@@ -1182,9 +1182,9 @@ class Solver {\n// expr ^ n (n > 0)\nIntExpr* MakePower(IntExpr* const expr, int64 n);\n- // vals[expr]\n+ // vals[index...
C++
Apache License 2.0
google/or-tools
remove comment ambiguity
261,245
20.05.2017 22:17:06
14,400
bf219bfb748db4bf6b8ebdb4ad992a4f99c3e5b7
added new assembly info file updated flatzinc swig include updated make file for flatzinc build targets
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.csharp.mk", "new_path": "makefiles/Makefile.csharp.mk", "diff": "@@ -26,7 +26,10 @@ endif\nCLR_PROTOBUF_DLL_NAME?=Google.Protobuf\nCLR_ORTOOLS_DLL_NAME?=Google.OrTools\nBASE_CLR_ORTOOLS_DLL_NAME:= $(CLR_ORTOOLS_DLL_NAME)\n-# TODO: TBD: add F...
C++
Apache License 2.0
google/or-tools
added new assembly info file updated flatzinc swig include updated make file for flatzinc build targets
261,245
21.05.2017 11:40:10
14,400
130b61ab0d45a3d8f0190285022fa16c11b6ebf0
added flatzinc nuget spec file updated csharp makefile concerning flatzinc packaging
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.csharp.mk", "new_path": "makefiles/Makefile.csharp.mk", "diff": "@@ -34,6 +34,8 @@ NAMESPACE_ORTOOLS_FZ:=$(BASE_CLR_ORTOOLS_DLL_NAME).Flatzinc\n# NuGet specification file name\nORTOOLS_NUSPEC_NAME := or-tools.nuspec\nORTOOLS_NUGET_DIR = temp...
C++
Apache License 2.0
google/or-tools
added flatzinc nuget spec file updated csharp makefile concerning flatzinc packaging
261,245
21.05.2017 11:48:20
14,400
d8cf618955753c91b827bd737d688dc564f4674f
minor update to the csharp makefile
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.csharp.mk", "new_path": "makefiles/Makefile.csharp.mk", "diff": "@@ -433,7 +433,7 @@ ifeq ($(SYSTEM),win)\nif not exist temp $(MKDIR) temp\nif exist $(ORTOOLS_NUGET_DIR) $(ATTRIB) -r /s temp\n-$(RM_RECURSE_FORCED) $(ORTOOLS_NUGET_DIR)\n-endi...
C++
Apache License 2.0
google/or-tools
minor update to the csharp makefile
261,230
23.05.2017 11:55:36
-7,200
7a0ceca73da309483c62a75be5c03b0f327b41a4
add a new dependencies: google/glog; Cleanup Makefile.local
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.gen.mk", "new_path": "makefiles/Makefile.gen.mk", "diff": "@@ -21,7 +21,6 @@ BASE_LIB_OBJS = \\\n$(OBJ_DIR)/base/file.$O \\\n$(OBJ_DIR)/base/filelinereader.$O \\\n$(OBJ_DIR)/base/join.$O \\\n- $(OBJ_DIR)/base/logging.$O \\\n$(OBJ_DIR)/base/m...
C++
Apache License 2.0
google/or-tools
add a new dependencies: google/glog; Cleanup Makefile.local
261,230
23.05.2017 12:42:05
0
2ef31469e994b19df3c512bc46a1fc36997c12f9
compile glog on windows
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.third_party.win.mk", "new_path": "makefiles/Makefile.third_party.win.mk", "diff": "# tags of dependencies to checkout.\nGFLAGS_TAG = 2.2.0\nPROTOBUF_TAG = 3.2.0\n+GLOG_TAG = 0.3.5\nCBC_TAG = 2.9.8\nZLIB_TAG = 1.2.11\nZLIB_ARCHIVE_TAG = 1211\...
C++
Apache License 2.0
google/or-tools
compile glog on windows
261,230
23.05.2017 18:28:20
-7,200
99a8b44486af8aa0b0ed247875a56e4fe4d71a40
include glog in archive
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.archive.mk", "new_path": "makefiles/Makefile.archive.mk", "diff": "@@ -29,6 +29,7 @@ create_dirs:\n$(MKDIR) temp$S$(INSTALL_DIR)$Sinclude$Sortools$Sbase\n$(MKDIR) temp$S$(INSTALL_DIR)$Sinclude$Sortools$Sconstraint_solver\n$(MKDIR) temp$S$(IN...
C++
Apache License 2.0
google/or-tools
include glog in archive
261,230
24.05.2017 23:52:13
-7,200
c11e9d2d46d06434ff97fe32b05d3baf2e1667c2
add __version__ to pypi module
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.python.mk", "new_path": "makefiles/Makefile.python.mk", "diff": "@@ -261,6 +261,7 @@ $(PYPI_ARCHIVE_TEMP_DIR) : $(OR_TOOLS_PYTHON_GEN_SCRIPTS)\n$(COPY) ortools$Sgen$Sortools$Sgraph$Spywrapgraph.py $(PYPI_ARCHIVE_TEMP_DIR)$Sortools$Sortools$S...
C++
Apache License 2.0
google/or-tools
add __version__ to pypi module
261,230
29.05.2017 14:49:34
-7,200
40ce0077f5a4c1ba3e742dc5c2987a3a8ed63f0d
cp_model (sat) flatzinc solver
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.cpp.mk", "new_path": "makefiles/Makefile.cpp.mk", "diff": "@@ -93,6 +93,7 @@ FLATZINC_LIBS = $(LIB_DIR)/$(LIB_PREFIX)fz.$(LIB_SUFFIX)\nFLATZINC_DEPS = \\\n$(SRC_DIR)/ortools/flatzinc/checker.h \\\n$(SRC_DIR)/ortools/flatzinc/constraints.h \\...
C++
Apache License 2.0
google/or-tools
cp_model (sat) flatzinc solver
261,260
29.05.2017 18:25:41
-19,080
b2cf45a161792a889af66fcca74a2111ef1ac2d7
Added cmath for fabs, append current root to protobuf include dirs
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "@@ -42,6 +42,8 @@ IF(BUILD_CXX)\nSET(CMAKE_CXX_FLAGS \"${CMAKE_CXX_FLAGS} ${CLP_CFLAGS} -DUSE_CLP\")\nENDIF(CLP_FOUND)\n+ SET(PROTOBUF_IMPORT_DIRS ${CMAKE_CURRENT_SOURCE_DIR})\n+\nINCLUDE_DIRECTORIES(.)\n...
C++
Apache License 2.0
google/or-tools
Added cmath for fabs, append current root to protobuf include dirs
261,260
30.05.2017 11:50:04
-19,080
709a1ba6d429eff3561226038fca4f70f574e00f
Added sat/cp_model.proto to object sources
[ { "change_type": "MODIFY", "old_path": "ortools/sat/CMakeLists.txt", "new_path": "ortools/sat/CMakeLists.txt", "diff": "@@ -6,6 +6,7 @@ PROJECT(${PROJECT_NAME}_sat)\nFILE(GLOB ${PROJECT_NAME}_SOURCES \"*.cc\")\nPROTOBUF_GENERATE_CPP(BOOL_PROTO_SRCS BOOL_PROTO_HDRS boolean_problem.proto)\nPROTOBUF_GE...
C++
Apache License 2.0
google/or-tools
Added sat/cp_model.proto to object sources
261,260
30.05.2017 15:39:19
-19,080
72e33137849df7c27ef5a3b26d24f3f09221cbb8
Updated CMakeLists to retain hierarchy of proto generated files
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "CMAKE_MINIMUM_REQUIRED(VERSION 3.8)\n-PROJECT(or_tools LANGUAGES CXX)\n-SET(CMAKE_CXX_STANDARD 17)\n+PROJECT(ortools LANGUAGES CXX)\n+SET(CMAKE_CXX_STANDARD 11)\nINCLUDE(FindPkgConfig)\n@@ -30,6 +30,10 @@...
C++
Apache License 2.0
google/or-tools
Updated CMakeLists to retain hierarchy of proto generated files
261,260
30.05.2017 16:14:30
-19,080
54fb40e545c55d4c30cbcd2b1d837dbd22edfb64
Call .get() on unique_ptr so that cast to T* is possible
[ { "change_type": "MODIFY", "old_path": "ortools/graph/ebert_graph.h", "new_path": "ortools/graph/ebert_graph.h", "diff": "@@ -846,7 +846,7 @@ class ForwardStaticGraph\n// To be used in a DCHECK().\nbool TailArrayComplete() const {\n- CHECK_NOTNULL(tail_);\n+ CHECK_NOTNULL(tail_.get());\nfor (ArcInde...
C++
Apache License 2.0
google/or-tools
Call .get() on unique_ptr so that cast to T* is possible
261,260
30.05.2017 16:19:48
-19,080
39e6ec098c983a2cc83696b6e5bf7b174c0b7536
Compile proto as objects instead of shared libraries
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "@@ -54,7 +54,8 @@ IF(BUILD_CXX)\nINCLUDE_DIRECTORIES(${PROTOBUF_INCLUDE_DIRS})\nPROTOBUF_GENERATE_CPP(PROTO_SRCS PROTO_HDRS ${proto_files})\n- ADD_LIBRARY(${PROJECT_NAME}Proto SHARED ${PROTO_SRCS} ${PROTO...
C++
Apache License 2.0
google/or-tools
Compile proto as objects instead of shared libraries
261,260
31.05.2017 16:10:00
-19,080
50151907e15e1795cb87ab5f87ef022b9603af4e
Enable fallback for gflags, glog and protobuf
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "@@ -4,6 +4,7 @@ PROJECT(ortools LANGUAGES CXX)\nSET(CMAKE_CXX_STANDARD 11)\nINCLUDE(FindPkgConfig)\n+INCLUDE(ExternalProject)\nSET(CMAKE_INSTALL_LIBDIR lib)\nSET(CMAKE_INSTALL_BINDIR bin)\n@@ -14,19 +15,5...
C++
Apache License 2.0
google/or-tools
Enable fallback for gflags, glog and protobuf
261,230
31.05.2017 14:25:05
-7,200
f91ed922ec2ef51af6cb2379a7fb6c925f863a25
fix make third_party on unix
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.third_party.unix.mk", "new_path": "makefiles/Makefile.third_party.unix.mk", "diff": "@@ -199,6 +199,7 @@ install_glog: dependencies/install/include/glog/logging.h\ndependencies/install/include/glog/logging.h: dependencies/sources/glog-$(GLOG...
C++
Apache License 2.0
google/or-tools
fix make third_party on unix
261,260
31.05.2017 18:38:57
-19,080
9fbe3e2e33ee5cca2f9330e95ab42a0f81fc805d
Added cbc with fallback to locally compiled
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "@@ -16,7 +16,6 @@ IF(UNIX)\nENDIF()\nENDIF()\n-SET(CMAKE_CXX_FLAGS \"${CMAKE_CXX_FLAGS} -fwrapv -DNDEBUG -DUSE_GLOP -DUSE_BOP\")\nSET(BUILD_CXX ON)\nSET(DOWNLOAD_LOCATION \"${CMAKE_CURRENT_BINARY_DIR}/dow...
C++
Apache License 2.0
google/or-tools
Added cbc with fallback to locally compiled
261,230
31.05.2017 18:58:47
-7,200
0378cc3eae8297e449c9ac8847184d60993b47b3
misc fixes: mac min version is now 10.9; compile cbc with -j 4 on unix; delete glog in clean_third_party
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.port", "new_path": "makefiles/Makefile.port", "diff": "@@ -66,7 +66,7 @@ ifeq (\"$(SYSTEM)\",\"unix\")\nelse\nJDK_DIRECTORY = $(shell /usr/libexec/java_home)/include\nendif\n- MAC_MIN_VERSION = 10.8\n+ MAC_MIN_VERSION = 10.9\nendif\n# Look a...
C++
Apache License 2.0
google/or-tools
misc fixes: mac min version is now 10.9; compile cbc with -j 4 on unix; delete glog in clean_third_party
261,230
01.06.2017 00:39:58
-7,200
88bf683de023c48b9b859c203fe865e411ecffc2
fix make install_python_modules
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.python.mk", "new_path": "makefiles/Makefile.python.mk", "diff": "@@ -60,6 +60,8 @@ dependencies/sources/protobuf-3.2.0/python/google/protobuf/descriptor_pb2.py: \\\ndependencies/sources/protobuf-$(PROTOBUF_TAG)/python/setup.py\nifeq (\"$(SYS...
C++
Apache License 2.0
google/or-tools
fix make install_python_modules
261,260
01.06.2017 15:10:07
-19,080
ec02b1eb2e28f1412883a3f506f6a6620ca4add2
t push -f# This is a combination of 2 commits. Specify zlib as a system depend, disable Win builds(needs rework), move versioning to a config file
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "@@ -26,24 +26,24 @@ MARK_AS_ADVANCED(DOWNLOAD_LOCATION)\nSET(${PROJECT_NAME}externalLibraries \"\")\nSET(${PROJECT_NAME}externalTargets \"\")\n+FILE(READ ${CMAKE_CURRENT_SOURCE_DIR}/Dependencies.txt _Depe...
C++
Apache License 2.0
google/or-tools
t push -f# This is a combination of 2 commits. Specify zlib as a system depend, disable Win builds(needs rework), move versioning to a config file
261,230
01.06.2017 14:23:17
-7,200
f4c5942c79e1f3e0a03a7b641557d56c18288426
more work on cmake integration; allow custom swig binary on unix
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.third_party.unix.mk", "new_path": "makefiles/Makefile.third_party.unix.mk", "diff": "# SVN tags of dependencies to checkout.\nGFLAGS_TAG = 2.2.0\n-PROTOBUF_TAG = 3.2.0\n+PROTOBUF_TAG = 3.3.0\nGLOG_TAG = 0.3.5\nCBC_TAG = 2.9.8\n-HELP2MAN_TAG ...
C++
Apache License 2.0
google/or-tools
more work on cmake integration; allow custom swig binary on unix
261,260
02.06.2017 14:12:32
-19,080
b98bedd9061d08f9d14275c4ebf3d5f02a87ad14
Added missing archives from cbc and clp, added libz as libraries required to statically link against protobuf
[ { "change_type": "MODIFY", "old_path": "cmake/external/cbc.cmake", "new_path": "cmake/external/cbc.cmake", "diff": "@@ -8,10 +8,19 @@ FOREACH(COIN_PROJECT CoinUtils Osi Clp Cgl Cbc)\nGIT_TAG \"releases/${${COIN_PROJECT}_VERSION}\"\nDOWNLOAD_DIR \"${DOWNLOAD_LOCATION}\"\nBUILD_IN_SOURCE 1\n- CONFIGUR...
C++
Apache License 2.0
google/or-tools
Added missing archives from cbc and clp, added libz as libraries required to statically link against protobuf
261,260
05.06.2017 16:59:45
-19,080
93bc5a3e0eb69609ba9820981507805d65987054
Separate dependency libs into their own flags, addition of imported targets. Working *nix build
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "@@ -17,13 +17,11 @@ IF(UNIX)\nENDIF()\nSET(BUILD_CXX ON)\n-SET(DOWNLOAD_LOCATION \"${CMAKE_CURRENT_BINARY_DIR}/downloads\"\n- CACHE PATH \"Location where external projects will be downloaded.\")\n+SET(DOW...
C++
Apache License 2.0
google/or-tools
Separate dependency libs into their own flags, addition of imported targets. Working *nix build
261,260
06.06.2017 14:42:03
-19,080
989db6ebdd3a5a559401271912e491539b35a81e
Remove external dependencies specified manually
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "@@ -22,8 +22,6 @@ SET(DOWNLOAD_LOCATION \"${CMAKE_CURRENT_BINARY_DIR}/downloads\" CACHE PATH \"Locati\nMARK_AS_ADVANCED(BUILD_CXX)\nMARK_AS_ADVANCED(DOWNLOAD_LOCATION)\n-SET(${PROJECT_NAME}externalTargets...
C++
Apache License 2.0
google/or-tools
Remove external dependencies specified manually
261,260
06.06.2017 14:44:39
-19,080
d75292d759126837117090d427b886a38d8a8157
Specify protoc binary as an imported target
[ { "change_type": "MODIFY", "old_path": "cmake/external/protobuf.cmake", "new_path": "cmake/external/protobuf.cmake", "diff": "@@ -27,4 +27,6 @@ SET_PROPERTY(TARGET Protobuf PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_BINARY_D\nSET(Protobuf_LIBRARIES \"\")\nLIST(APPEND Protobuf_LIBRARIES Protobuf ${ZL...
C++
Apache License 2.0
google/or-tools
Specify protoc binary as an imported target
261,260
06.06.2017 15:18:57
-19,080
9042f518bd8556dfdac7676f45e346f1ba96d794
Missing property param in set_property, enable silent builds for coin
[ { "change_type": "MODIFY", "old_path": "cmake/external/cbc.cmake", "new_path": "cmake/external/cbc.cmake", "diff": "@@ -12,7 +12,7 @@ FOREACH(COIN_PROJECT CoinUtils Osi Clp Cgl Cbc)\nUPDATE_COMMAND \"\"\nBUILD_IN_SOURCE 1\nCONFIGURE_COMMAND ${CMAKE_CURRENT_BINARY_DIR}/${COIN_PROJECT}/src/${COIN_PROJ...
C++
Apache License 2.0
google/or-tools
Missing property param in set_property, enable silent builds for coin
261,260
06.06.2017 15:29:49
-19,080
90cbbf30087446cb1d46d29264da496370464c02
Specify protoc/libprotobuf to depend on external protobuf build
[ { "change_type": "MODIFY", "old_path": "cmake/external/protobuf.cmake", "new_path": "cmake/external/protobuf.cmake", "diff": "@@ -24,9 +24,11 @@ ExternalProject_Add(Protobuf_project\nADD_LIBRARY(Protobuf STATIC IMPORTED)\nSET_PROPERTY(TARGET Protobuf PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_BINARY...
C++
Apache License 2.0
google/or-tools
Specify protoc/libprotobuf to depend on external protobuf build
261,260
06.06.2017 15:51:34
-19,080
d71b505d4197ace1d3ed424cd1b737d9cbab94cd
Fix protoc dependency issues
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "@@ -74,6 +74,9 @@ IF(BUILD_CXX)\nPROTOBUF_GENERATE_CPP(PROTO_SRCS PROTO_HDRS ${proto_files})\nADD_LIBRARY(${PROJECT_NAME}Proto OBJECT ${PROTO_SRCS} ${PROTO_HDRS})\n+ IF(NOT Protobuf_FOUND)\n+ ADD_DEPENDEN...
C++
Apache License 2.0
google/or-tools
Fix protoc dependency issues
261,260
06.06.2017 16:30:16
-19,080
637b7df6efdcf2c8ae18c549c3079bd63a331077
Specify Cbc as a hard dep before building ortools
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "@@ -77,6 +77,11 @@ IF(BUILD_CXX)\nIF(NOT Protobuf_FOUND)\nADD_DEPENDENCIES(${PROJECT_NAME}Proto Protobuf_PROTOC_EXECUTABLE)\nENDIF()\n+\n+ IF(NOT Cbc_FOUND)\n+ ADD_DEPENDENCIES(${PROJECT_NAME}Proto Cbc)\n...
C++
Apache License 2.0
google/or-tools
Specify Cbc as a hard dep before building ortools
261,260
06.06.2017 18:48:30
-19,080
e833d3b90fda35a3e2be307f0667a2cd652be4ea
Gflags is reflected as gflags in the project CMakeConfig
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "@@ -23,7 +23,7 @@ MARK_AS_ADVANCED(BUILD_CXX)\nMARK_AS_ADVANCED(DOWNLOAD_LOCATION)\nFILE(READ ${CMAKE_CURRENT_SOURCE_DIR}/Dependencies.txt _Dependency_file)\n-FOREACH(DEPENDENCY Protobuf Gflags Glog cbc C...
C++
Apache License 2.0
google/or-tools
Gflags is reflected as gflags in the project CMakeConfig
261,260
06.06.2017 18:54:04
-19,080
5ffd850aeb128d8c1f9b95a0b74817ae31d49c1b
Make glog depend on gflags
[ { "change_type": "MODIFY", "old_path": "cmake/external/glog.cmake", "new_path": "cmake/external/glog.cmake", "diff": "@@ -20,6 +20,10 @@ ExternalProject_Add(Glog_project\n-DCMAKE_VERBOSE_MAKEFILE:BOOL=OFF\n-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=ON)\n+IF(NOT gflags_FOUND)\n+ ADD_DEPENDENCIES(Glog_pro...
C++
Apache License 2.0
google/or-tools
Make glog depend on gflags
261,230
07.06.2017 09:54:01
-7,200
c1e3c7d9513405f19ddf45f3584a8948092c12b7
fix cmake on mac; add some logging when running cmake
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "@@ -22,23 +22,25 @@ SET(DOWNLOAD_LOCATION \"${CMAKE_CURRENT_BINARY_DIR}/downloads\" CACHE PATH \"Locati\nMARK_AS_ADVANCED(BUILD_CXX)\nMARK_AS_ADVANCED(DOWNLOAD_LOCATION)\n+MESSAGE(\"-- Reading dependency ...
C++
Apache License 2.0
google/or-tools
fix cmake on mac; add some logging when running cmake
261,230
07.06.2017 10:26:41
-7,200
382d9939b38529ee396e5adb9472896468f37b59
Move versioning to a stand alone file
[ { "change_type": "MODIFY", "old_path": "Makefile", "new_path": "Makefile", "diff": "@@ -7,9 +7,6 @@ help:\n@echo \" - .NET: csharp test_csharp clean_csharp \"\n@echo \" - all: all test clean\"\n-OR_TOOLS_MAJOR = 6\n-OR_TOOLS_MINOR = 0\n-\n# OR_ROOT is the minimal prefix to define the root of or-tool...
C++
Apache License 2.0
google/or-tools
Move versioning to a stand alone file
261,232
08.06.2017 12:26:05
0
2c61433fc3e2a37be9f5de5b737e33beabc2409c
Fix issue in MakeRelocateNeighborsOperator
[ { "change_type": "MODIFY", "old_path": "ortools/constraint_solver/routing_neighborhoods.cc", "new_path": "ortools/constraint_solver/routing_neighborhoods.cc", "diff": "@@ -53,7 +53,7 @@ bool MakeRelocateNeighborsOperator::MoveChainAndRepair(int64 before_chain,\nif (current == last) { // chain was ju...
C++
Apache License 2.0
google/or-tools
Fix issue in MakeRelocateNeighborsOperator
261,260
09.06.2017 16:27:31
-19,080
1d48160532a4d4a7d055881a91e6b788892408d8
Fixes to compile glog against locally built gflags
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "@@ -82,6 +82,10 @@ IF(BUILD_CXX)\nADD_DEPENDENCIES(${PROJECT_NAME}Proto Cbc)\nENDIF()\n+ IF(NOT GLOG_FOUND)\n+ ADD_DEPENDENCIES(${PROJECT_NAME}Proto GLOG)\n+ ENDIF()\n+\nSET_TARGET_PROPERTIES(${PROJECT_NA...
C++
Apache License 2.0
google/or-tools
Fixes to compile glog against locally built gflags
261,230
09.06.2017 13:32:06
-7,200
c413dff75026c4ed70207bc3acb8f3627f4d5948
better cmake config for glog in make third_party on unix
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.third_party.unix.mk", "new_path": "makefiles/Makefile.third_party.unix.mk", "diff": "@@ -195,13 +195,13 @@ dependencies/install/include/glog/logging.h: dependencies/sources/glog-$(GLOG_TA\ncd dependencies/sources/glog-$(GLOG_TAG)/build_cmake...
C++
Apache License 2.0
google/or-tools
better cmake config for glog in make third_party on unix
261,260
09.06.2017 17:19:09
-19,080
eb416b850e90e3cc88c6cc37f3bc8586d89f4ea4
Patch glog for invalid includedir argument
[ { "change_type": "ADD", "old_path": null, "new_path": "patches/glog_includedir_fix.patch", "diff": "+From 00663891e82c32fc032ee93ab8718e32a7a643d2 Mon Sep 17 00:00:00 2001\n+From: Amit Prakash Ambasta <amit.ambasta@delhivery.com>\n+Date: Wed, 7 Jun 2017 19:37:49 +0530\n+Subject: [PATCH] Patch to fix...
C++
Apache License 2.0
google/or-tools
Patch glog for invalid includedir argument
261,260
09.06.2017 18:11:47
-19,080
744d507ccb28b983597724eba8ac17aa83531706
Remove coin from include prefix
[ { "change_type": "MODIFY", "old_path": "ortools/linear_solver/cbc_interface.cc", "new_path": "ortools/linear_solver/cbc_interface.cc", "diff": "#undef PACKAGE\n#undef VERSION\n-#include \"coin/CbcConfig.h\"\n-#include \"coin/CbcMessage.hpp\"\n-#include \"coin/CbcModel.hpp\"\n-#include \"coin/CoinMod...
C++
Apache License 2.0
google/or-tools
Remove coin from include prefix
261,260
09.06.2017 18:20:48
-19,080
ee1de6b77b48ab4d811f2a1cc844a8ee10a9e460
Fix merge issues in gflags cmake file
[ { "change_type": "MODIFY", "old_path": "cmake/external/gflags.cmake", "new_path": "cmake/external/gflags.cmake", "diff": "@@ -20,15 +20,8 @@ ExternalProject_Add(gflags_project\n-DCMAKE_VERBOSE_MAKEFILE:BOOL=OFF\n-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=ON)\n-<<<<<<< HEAD\nADD_LIBRARY(gflags STATIC IMP...
C++
Apache License 2.0
google/or-tools
Fix merge issues in gflags cmake file
261,260
09.06.2017 18:36:38
-19,080
28d7528e29181bed2d6b2e2e2bff0e85e2fa9313
Change include dirs in makefiles.plat.mk for #include <coin/header> to change to #include <header>
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.unix.mk", "new_path": "makefiles/Makefile.unix.mk", "diff": "@@ -83,17 +83,17 @@ ifdef UNIX_CBC_DIR\nendif\n# This is needed to find Coin LP include files.\nifdef UNIX_CLP_DIR\n- CLP_INC = -I$(UNIX_CLP_DIR)/include -DUSE_CLP\n+ CLP_INC = -I$...
C++
Apache License 2.0
google/or-tools
Change include dirs in makefiles.plat.mk for #include <coin/header> to change to #include <header>
261,230
09.06.2017 13:29:06
0
22cc9ccaa6a227a3859aa0c1fb6b9ff48d7b1d0b
fix VS_RELEASE on visual studio 2017
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.port", "new_path": "makefiles/Makefile.port", "diff": "@@ -122,14 +122,17 @@ ifeq (\"$(SYSTEM)\",\"win\")\nifeq (\"$(VisualStudioVersion)\", \"12.0\")\nVISUAL_STUDIO_YEAR = 2013\nVISUAL_STUDIO_MAJOR = 12\n+ VS_RELEASE = v120\nelse\nifeq (\"$...
C++
Apache License 2.0
google/or-tools
fix VS_RELEASE on visual studio 2017
261,230
11.06.2017 20:38:22
-7,200
6790dca5b8acd5102d74bfbb929c39cc83eca37f
presolve cumulative to disjunctive or all_different if possible
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_presolve.cc", "new_path": "ortools/sat/cp_model_presolve.cc", "diff": "@@ -1171,6 +1171,64 @@ bool PresolveAllDiff(ConstraintProto* ct, PresolveContext* context) {\nreturn false;\n}\n+bool PresolveCumulative(ConstraintProto* ct, PresolveCo...
C++
Apache License 2.0
google/or-tools
presolve cumulative to disjunctive or all_different if possible
261,232
13.06.2017 08:58:33
14,400
6ca14d09030b74e4a1b9fcccf7788d14e485c89a
Fixing python swig wrapper to properly handle vector<vector<>> of different sizes.
[ { "change_type": "MODIFY", "old_path": "ortools/util/python/vector.i", "new_path": "ortools/util/python/vector.i", "diff": "@@ -116,16 +116,9 @@ PY_LIST_OUTPUT_TYPEMAP(double, PyFloat_Check, PyFloat_FromDouble);\nSWIG_fail;\n}\nbool is_tuple = PyTuple_Check(tuple);\n- int local_arity = is_tuple ? Py...
C++
Apache License 2.0
google/or-tools
Fixing python swig wrapper to properly handle vector<vector<>> of different sizes.
261,260
14.06.2017 14:54:43
-19,080
63febfa0aac8b6d905211bafdf242a043534e57a
CMake modules for Cbc/glog to avoid pkg-config on WIN32
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "-CMAKE_MINIMUM_REQUIRED(VERSION 3.8)\n+CMAKE_MINIMUM_REQUIRED(VERSION 3.5)\n+\n+LIST(APPEND CMAKE_MODULE_PATH \"${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules\")\nPROJECT(ortools LANGUAGES CXX)\nSET(CMAKE_CXX_...
C++
Apache License 2.0
google/or-tools
CMake modules for Cbc/glog to avoid pkg-config on WIN32
261,260
14.06.2017 15:03:35
-19,080
2867ae7a59677c2fcd09f27509b10f75a84fa0e3
Fix missing include for CLP in Makefile.unix.mk to point to include dir and include/coin dir
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.unix.mk", "new_path": "makefiles/Makefile.unix.mk", "diff": "@@ -83,7 +83,7 @@ ifdef UNIX_CBC_DIR\nendif\n# This is needed to find Coin LP include files.\nifdef UNIX_CLP_DIR\n- CLP_INC = -I$(UNIX_CLP_DIR)/include/coin -DUSE_CLP\n+ CLP_INC = ...
C++
Apache License 2.0
google/or-tools
Fix missing include for CLP in Makefile.unix.mk to point to include dir and include/coin dir
261,260
14.06.2017 16:13:48
-19,080
606c31849c7361add2b6627570f1172fbb139c85
Rename Glog to glog in external/glog.cmake
[ { "change_type": "MODIFY", "old_path": "cmake/external/glog.cmake", "new_path": "cmake/external/glog.cmake", "diff": "-SET(GLOG_INCLUDE_DIRS ${CMAKE_CURRENT_BINARY_DIR}/glog_project/src/glog/)\n-LIST(APPEND GLOG_INCLUDE_DIRS ${CMAKE_CURRENT_BINARY_DIR}/glog_project/src/glog/src/)\n-SET(GLOG_URL http...
C++
Apache License 2.0
google/or-tools
Rename Glog to glog in external/glog.cmake
261,260
14.06.2017 17:18:51
-19,080
43158791f89e9e65d31b008751c0dd407d164cde
Change includedirs for cbc projects built internally
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "@@ -47,7 +47,7 @@ IF(BUILD_CXX)\nENDIF()\nINCLUDE_DIRECTORIES(${Protobuf_INCLUDE_DIRS})\n- FIND_PACKAGE(gflags ${gflags_VERSION} QUIET)\n+ FIND_PACKAGE(gflags ${gflags_VERSION})\nIF(NOT gflags_FOUND)\nMES...
C++
Apache License 2.0
google/or-tools
Change includedirs for cbc projects built internally
261,260
14.06.2017 17:23:27
-19,080
415906d5bc82437c67dc5f6d3a2da4a86d7067a0
Detect path suffix cbc/coin/CbcConfig.h for alternate installations
[ { "change_type": "MODIFY", "old_path": "cmake/modules/FindCbc.cmake", "new_path": "cmake/modules/FindCbc.cmake", "diff": "@@ -2,9 +2,9 @@ INCLUDE(FindPackageHandleStandardArgs)\nSET(Cbc_ROOT_DIR \"\" CACHE PATH \"Path to Coin-OR Cbc\")\nIF(WIN32)\n- FIND_PATH(Cbc_INCLUDE_DIR CbcConfig.h PATHS ${Cbc_...
C++
Apache License 2.0
google/or-tools
Detect path suffix cbc/coin/CbcConfig.h for alternate installations
261,260
14.06.2017 17:39:38
-19,080
efeee95364793bac637dd1c86b927704d49823fe
FindCbc should append includedirs for all the subprojects cbc depends on as well
[ { "change_type": "MODIFY", "old_path": "cmake/modules/FindCbc.cmake", "new_path": "cmake/modules/FindCbc.cmake", "diff": "INCLUDE(FindPackageHandleStandardArgs)\n-SET(Cbc_ROOT_DIR \"\" CACHE PATH \"Path to Coin-OR Cbc\")\n+FOREACH(COIN_PROJECT CoinUtils Osi Clp Cgl Cbc)\n+ SET(${COIN_PROJECT}_ROOT_D...
C++
Apache License 2.0
google/or-tools
FindCbc should append includedirs for all the subprojects cbc depends on as well
261,260
14.06.2017 17:43:25
-19,080
7a027ad7f6c0c9dbe9dee09e7071ff0e16f24ddd
Cbc currently doesn't build on Win, don't specify cbc as a ortools dependency if MSVC
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "@@ -92,8 +92,10 @@ IF(BUILD_CXX)\nENDIF()\nIF(NOT Cbc_FOUND)\n+ IF(NOT MSVC)\nADD_DEPENDENCIES(${PROJECT_NAME}Proto Cbc)\nENDIF()\n+ ENDIF()\nIF(NOT glog_FOUND)\nADD_DEPENDENCIES(${PROJECT_NAME}Proto glog...
C++
Apache License 2.0
google/or-tools
Cbc currently doesn't build on Win, don't specify cbc as a ortools dependency if MSVC
261,260
14.06.2017 18:23:12
-19,080
e7c7b8a5eff8134d4bb3f39a3a6431acea90332a
Specify NMake generator for WIN32
[ { "change_type": "MODIFY", "old_path": "cmake/external/gflags.cmake", "new_path": "cmake/external/gflags.cmake", "diff": "SET(gflags_INCLUDE_DIRS ${CMAKE_CURRENT_BINARY_DIR}/gflags_project/src/gflags/include/)\nSET(gflags_URL https://github.com/gflags/gflags)\n+IF(MSVC)\n+ SET(gflags_ADDITIONAL_CMAK...
C++
Apache License 2.0
google/or-tools
Specify NMake generator for WIN32
261,260
20.06.2017 14:21:05
-19,080
eca557e81bc8be23bc255559a46d438c1c65184a
GnuInstallDirs does not override CMAKE_INSTALL_LIB/BIN/..DIR
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "@@ -7,14 +7,19 @@ SET(CMAKE_CXX_STANDARD 11)\nINCLUDE(ExternalProject)\n-SET(CMAKE_INSTALL_LIBDIR lib)\n-SET(CMAKE_INSTALL_BINDIR bin)\n-SET(CMAKE_INSTALL_INCLUDEDIR include)\nIF(UNIX)\nIF(NOT APPLE)\nINC...
C++
Apache License 2.0
google/or-tools
GnuInstallDirs does not override CMAKE_INSTALL_LIB/BIN/..DIR
261,230
21.06.2017 11:13:08
-7,200
fbdf13d960602fceebe8a1791561c9b04ab86811
sync with internal code; mostly sat improvements
[ { "change_type": "ADD", "old_path": null, "new_path": "ortools/flatzinc/mznlib_sat/inverse.mzn", "diff": "+%-----------------------------------------------------------------------------%\n+% Constrains two arrays of int variables, f and invf, to represent inverse\n+% functions. All the values in eac...
C++
Apache License 2.0
google/or-tools
sync with internal code; mostly sat improvements
261,260
28.06.2017 15:33:56
-19,080
97d581dd9e3c3a5cfce2876c04adfb926fd5b5e4
Added support to build python
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "-CMAKE_MINIMUM_REQUIRED(VERSION 3.5)\n+CMAKE_MINIMUM_REQUIRED(VERSION 3.8)\nLIST(APPEND CMAKE_MODULE_PATH \"${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules\")\nPROJECT(ortools LANGUAGES CXX)\n-SET(CMAKE_CXX_STA...
C++
Apache License 2.0
google/or-tools
Added support to build python
261,260
28.06.2017 16:04:54
-19,080
341fb1c98a96813a131a7024584cc643b9f9ca2e
Added __init__.py missing in ortools python subdirs
[ { "change_type": "MODIFY", "old_path": "cmake/python.cmake", "new_path": "cmake/python.cmake", "diff": "@@ -16,6 +16,26 @@ FILE(COPY\nDESTINATION\n${CMAKE_CURRENT_BINARY_DIR}/ortools/)\n+FILE(COPY\n+ ${CMAKE_CURRENT_SOURCE_DIR}/ortools/__init__.py\n+ DESTINATION\n+ ${CMAKE_CURRENT_BINARY_DIR}/ortool...
C++
Apache License 2.0
google/or-tools
Added __init__.py missing in ortools python subdirs
261,230
29.06.2017 11:21:49
-7,200
94b3832a465fc5fe4c86900824faf975a690b74c
filter out tests from generated makefiles
[ { "change_type": "MODIFY", "old_path": "tools/generate_deps.sh", "new_path": "tools/generate_deps.sh", "diff": "main_dir=$2\n# List all files on ortools/$main_dir\n-all_cc=`ls ortools/$main_dir/*.cc`\n+all_cc=`ls ortools/$main_dir/*.cc | grep -v test.cc`\nall_h=`ls ortools/$main_dir/*.h`\nif ls orto...
C++
Apache License 2.0
google/or-tools
filter out tests from generated makefiles
261,230
30.06.2017 12:08:02
-7,200
d194b8ccec56d4d51f1f1f54ebad1cf575ecf136
also export lp_data to binary archive
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.archive.mk", "new_path": "makefiles/Makefile.archive.mk", "diff": "@@ -35,6 +35,7 @@ create_dirs:\n$(MKDIR) temp$S$(INSTALL_DIR)$Sinclude$Sortools$Sgoogle\n$(MKDIR) temp$S$(INSTALL_DIR)$Sinclude$Sortools$Sgraph\n$(MKDIR) temp$S$(INSTALL_DIR)...
C++
Apache License 2.0
google/or-tools
also export lp_data to binary archive
261,230
01.07.2017 10:26:01
-7,200
4033496f0e58244e3ac80fffa2a8d83af313f616
fix compilation of fz
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.cpp.mk", "new_path": "makefiles/Makefile.cpp.mk", "diff": "@@ -102,7 +102,6 @@ FLATZINC_DEPS = \\\n$(SRC_DIR)/ortools/flatzinc/presolve.h \\\n$(SRC_DIR)/ortools/flatzinc/reporting.h \\\n$(SRC_DIR)/ortools/flatzinc/sat_constraint.h \\\n- $(SR...
C++
Apache License 2.0
google/or-tools
fix compilation of fz
261,260
03.07.2017 15:09:31
-19,080
c5c1d3d56f2d0af1b184e44c9f77a58fc4bebe22
Added version detection support from git tags with fallback to file, added ability to generate cmake config files
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "@@ -2,10 +2,15 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.8)\nLIST(APPEND CMAKE_MODULE_PATH \"${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules\")\n-PROJECT(ortools LANGUAGES CXX)\n-SET(CMAKE_CXX_STANDARD 17)\n-\n+INCLU...
C++
Apache License 2.0
google/or-tools
Added version detection support from git tags with fallback to file, added ability to generate cmake config files
261,260
03.07.2017 15:30:24
-19,080
31863e4ddae528b30ce3b259587c9b4eb7bbb3a3
Added flags to force rebuild of all dependencies, created hierarchy b/w python and C++ projects when the C++ project is being built
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "@@ -28,6 +28,7 @@ ENDIF()\nSET(BUILD_CXX OFF CACHE BOOL \"Build C++ library\")\nSET(BUILD_PY OFF CACHE BOOL \"Build Python library\")\n+SET(BUILD_DEPS OFF CACHE BOOL \"Force re-build of all dependencies\"...
C++
Apache License 2.0
google/or-tools
Added flags to force rebuild of all dependencies, created hierarchy b/w python and C++ projects when the C++ project is being built
261,260
03.07.2017 16:03:48
-19,080
91557b58db7a309e87e7562b411662d269e8e486
Incorrect naming for output var for git in utils
[ { "change_type": "MODIFY", "old_path": "cmake/utils.cmake", "new_path": "cmake/utils.cmake", "diff": "@@ -21,7 +21,7 @@ FUNCTION(GET_VERSION_FROM_GIT OUTPUT_VAR VERSION_MAJOR_ VERSION_MINOR_ VERSION_P\nOUTPUT_VARIABLE VERSION_FULL\nERROR_QUIET)\n- IF(NOT OUTPUT_VAR_)\n+ IF(NOT _OUTPUT_VAR)\nEXECUTE_...
C++
Apache License 2.0
google/or-tools
Incorrect naming for output var for git in utils
261,260
03.07.2017 16:36:03
-19,080
098069426a1a3bcbc99a2b119c3ba914791c607d
Squelch noise from find_package
[ { "change_type": "MODIFY", "old_path": "CMakeLists.txt", "new_path": "CMakeLists.txt", "diff": "@@ -40,7 +40,6 @@ ENDFOREACH()\nIF(BUILD_PY)\nFIND_PACKAGE(${PROJECT_NAME} QUIET)\n-\nIF(NOT ${PROJECT_NAME}_FOUND)\nSET(BUILD_CXX ON)\nELSE()\n@@ -50,17 +49,15 @@ IF(BUILD_PY)\nENDIF()\nENDIF()\n-FIND_PA...
C++
Apache License 2.0
google/or-tools
Squelch noise from find_package