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,218 | 20.02.2018 17:25:48 | -3,600 | 2e7dc7616475321ebb00d1d3268faa96dffde499 | Add diagnostic to detect_port | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.port.mk",
"new_path": "makefiles/Makefile.port.mk",
"diff": "@@ -219,6 +219,7 @@ FZ_INSTALL_DIR=or-tools_flatzinc_$(PORT)_v$(OR_TOOLS_VERSION)\ndetect_port:\n@echo SYSTEM = $(SYSTEM)\n+ @echo OS = $(OS)\n@echo PLATFORM = $(PLATFORM)\n@echo P... | C++ | Apache License 2.0 | google/or-tools | Add diagnostic to detect_port |
261,218 | 20.02.2018 17:26:08 | -3,600 | b623ff3da616629368310ffac0dc6ecb5eb329ec | Add diagnostic to detect_csharp | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.csharp.mk",
"new_path": "makefiles/Makefile.csharp.mk",
"diff": "@@ -709,4 +709,6 @@ $(patsubst examples/csharp/solution/%.csproj, \\\"solution%.csproj\\\"$(COMMA)\\\"{}\\\"\n$(SED) -i -e \"s/solution/solution\\\\/g\" -e \"s/EndProject/\\r\\... | C++ | Apache License 2.0 | google/or-tools | Add diagnostic to detect_csharp |
261,218 | 21.02.2018 10:12:34 | -3,600 | 7157b3d2d6afe6eae4ab49a3f54b660499968eaa | Update linux mono version
By default trusty only provide mono 3.2.8
cf | [
{
"change_type": "MODIFY",
"old_path": ".travis/install.sh",
"new_path": ".travis/install.sh",
"diff": "@@ -22,7 +22,11 @@ if [ \"${BUILDER}\" == make ];then\npyenv global system 3.6;\npython3.6 -m pip install -q virtualenv wheel six;\nelif [ \"${LANGUAGE}\" == csharp ];then\n- sudo apt-get -yqq ins... | C++ | Apache License 2.0 | google/or-tools | Update linux mono version
- By default trusty only provide mono 3.2.8
cf https://packages.ubuntu.com/trusty/mono-complete |
261,218 | 21.02.2018 14:53:14 | -3,600 | c5a68c93605fa5dff3765046d4531e288ab79a1f | Fix Makefile.csharp.mk | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.csharp.mk",
"new_path": "makefiles/Makefile.csharp.mk",
"diff": "@@ -67,12 +67,15 @@ ifeq ($(SYSTEM),win)\nendif\nendif\n-ifeq \"$(SYSTEM)\" \"win\"\n+ifeq ($(SYSTEM),win)\nNETSTANDARD_RUNTIME_IDENTIFIER=win-$(NETPLATFORM)\n-else ifeq ($(PLA... | C++ | Apache License 2.0 | google/or-tools | Fix Makefile.csharp.mk (#593) |
261,230 | 22.02.2018 15:11:27 | -3,600 | 936307c3c54416917318eb9095485036fb71e8d7 | fix bug in cp_model.py | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/python/cp_model.py",
"new_path": "ortools/sat/python/cp_model.py",
"diff": "@@ -676,9 +676,9 @@ class CpModel(object):\nAssertIsInt64(t[0])\nAssertIsInt64(t[1])\nAssertIsInt64(t[2])\n- model_ct.automata.transition_head.append(t[0])\n+ model_ct.auto... | C++ | Apache License 2.0 | google/or-tools | fix bug in cp_model.py |
261,230 | 22.02.2018 15:26:24 | -3,600 | e15e34340f53d2590683e5c5d3739b56a472e2cc | fix AddAutomata in C# | [
{
"change_type": "MODIFY",
"old_path": "ortools/com/google/ortools/sat/CpModel.cs",
"new_path": "ortools/com/google/ortools/sat/CpModel.cs",
"diff": "@@ -436,9 +436,9 @@ public class CpModel\n}\nfor (int i = 0; i < transitions.GetLength(0); ++i)\n{\n- aut.TransitionHead.Add(transitions[i, 0]);\n+ au... | C++ | Apache License 2.0 | google/or-tools | fix AddAutomata in C# |
261,230 | 23.02.2018 16:28:14 | -3,600 | 9ce48ce40592c06688de873880c069496d54842e | make method const | [
{
"change_type": "MODIFY",
"old_path": "ortools/lp_data/sparse.cc",
"new_path": "ortools/lp_data/sparse.cc",
"diff": "@@ -365,7 +365,7 @@ bool SparseMatrix::Equals(const SparseMatrix& a, Fractional tolerance) const {\n}\nvoid SparseMatrix::ComputeMinAndMaxMagnitudes(Fractional* min_magnitude,\n- Fra... | C++ | Apache License 2.0 | google/or-tools | make method const |
261,230 | 23.02.2018 17:28:21 | -3,600 | b238ebbddac3f8e0a2366560ce0151bece379b8b | Some fixes in the pure-SAT part of the cp_model solver:
Use the model time limit (to make ^C work)
Take into account some part of the presolve in the deterministic time.
Move the drat flag there. | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model_solver.cc",
"new_path": "ortools/sat/cp_model_solver.cc",
"diff": "@@ -72,6 +72,11 @@ DEFINE_string(cp_model_dump_file, \"\",\n\"file will be ovewritten with the last such model. \"\n\"TODO(fdid): dump all model to a recordio file instead?... | C++ | Apache License 2.0 | google/or-tools | Some fixes in the pure-SAT part of the cp_model solver:
- Use the model time limit (to make ^C work)
- Take into account some part of the presolve in the deterministic time.
- Move the drat flag there. |
261,218 | 23.02.2018 11:34:34 | -3,600 | 1afee6620409afb61477cfd23d02efa111544fd8 | Windows: unset MAKEFLAGS before calling nmake
Bug before this patch:
$ tools\make third_party WINDOWS_PATH_TO_PYTHON=c:\python27-64
[...]
cd dependencies\sources\zlib-1.2.11 && nmake -f win32\Makefile.msc zlib.lib
NMAKE : fatal error U1065: invalid option 'W' | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.win.mk",
"new_path": "makefiles/Makefile.third_party.win.mk",
"diff": "@@ -202,7 +202,7 @@ dependencies\\install\\include\\zconf.h: dependencies\\sources\\zlib-$(ZLIB_TAG)\\zlib\ntools\\touch.exe dependencies\\install\\include\\z... | C++ | Apache License 2.0 | google/or-tools | Windows: unset MAKEFLAGS before calling nmake
Bug before this patch:
$ tools\make third_party WINDOWS_PATH_TO_PYTHON=c:\python27-64
[...]
cd dependencies\sources\zlib-1.2.11 && nmake -f win32\Makefile.msc zlib.lib
NMAKE : fatal error U1065: invalid option 'W' |
261,218 | 21.02.2018 17:24:40 | -3,600 | a98ddc947d157b469ffb3a7f87035d8f3b1c49bf | Add third_party target to Makefile help | [
{
"change_type": "MODIFY",
"old_path": "Makefile",
"new_path": "Makefile",
"diff": "# Top level declarations\nhelp:\n@echo Please define target:\n+ @echo \" - Prerequisite: third_party third_party_check clean_third_party\"\n@echo \" - C++: cc test_cc clean_cc\"\n@echo \" - Python: python test_python... | C++ | Apache License 2.0 | google/or-tools | Add third_party target to Makefile help |
261,218 | 22.02.2018 16:27:48 | -3,600 | 56ca94324aff5adbf4b63f85678da92dee6d548c | Clean Makefiles | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.archive.mk",
"new_path": "makefiles/Makefile.archive.mk",
"diff": "archive: $(INSTALL_DIR)$(ARCHIVE_EXT)\n$(INSTALL_DIR)$(ARCHIVE_EXT): $(LIB_DIR)$S$(LIB_PREFIX)ortools.$(LIB_SUFFIX) csharp java create_dirs cc_archive dotnet_archive java_arc... | C++ | Apache License 2.0 | google/or-tools | Clean Makefiles |
261,218 | 22.02.2018 16:35:37 | -3,600 | 3fe8e6403c1e8879bb4fd17637cd91f54b0c347f | Silent download step in windows Makefile | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.win.mk",
"new_path": "makefiles/Makefile.third_party.win.mk",
"diff": "@@ -206,11 +206,11 @@ dependencies\\install\\lib\\zlib.lib: dependencies\\sources\\zlib-$(ZLIB_TAG)\\zlib.h\ncopy dependencies\\sources\\zlib-$(ZLIB_TAG)\\zli... | C++ | Apache License 2.0 | google/or-tools | Silent download step in windows Makefile |
261,218 | 21.02.2018 17:35:31 | -3,600 | 95bdd4c1cc6264118803d1a0bab392c9a57db161 | Rework build_delivery_win.cmd | [
{
"change_type": "MODIFY",
"old_path": "tools/build_delivery_win.cmd",
"new_path": "tools/build_delivery_win.cmd",
"diff": "+REM /!\\ THIS SCRIPT SUPPOSE A FIXED PATH FOR PYTHON /!\\\nREM Each blocks could be triggered independently (i.e. commenting others)\n-REM (e.g. want to upload only python35 a... | C++ | Apache License 2.0 | google/or-tools | Rework build_delivery_win.cmd |
261,218 | 23.02.2018 11:46:34 | -3,600 | f3c4a017d271df5d2e986896b952f9a642946e0b | Add publish_delivery_win.cmd | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "tools/publish_delivery_win.cmd",
"diff": "+REM /!\\ THIS SCRIPT SUPPOSE A FIXED PATH FOR PYTHON /!\\\n+REM Each blocks could be triggered independently (i.e. commenting others)\n+REM (e.g. want to upload only python35 artifacts)\n+\n+echo Upload... | C++ | Apache License 2.0 | google/or-tools | Add publish_delivery_win.cmd |
261,218 | 22.02.2018 10:13:55 | -3,600 | 7a183f6e43fe2ee57d51b06665be7692acd55b0a | fix shell command to search fsharp on windows
Must use where instead of which | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.fsharp.mk",
"new_path": "makefiles/Makefile.fsharp.mk",
"diff": "@@ -5,13 +5,14 @@ CLEAN_FILES=$(FSHARP_ORTOOLS_DLL_NAME).*\n# Check for required build tools\nifeq ($(SYSTEM), win)\nFSHARP_COMPILER:=fsc\n+ FSHARP_COMPILER_CHECK:=$(shell wher... | C++ | Apache License 2.0 | google/or-tools | fix shell command to search fsharp on windows
- Must use where instead of which |
261,218 | 22.02.2018 16:26:26 | -3,600 | 4739c51447bd7a18a2e16fb10a33b2daa5ceb52e | Rework Python Makefile
add help_python | [
{
"change_type": "MODIFY",
"old_path": "Makefile",
"new_path": "Makefile",
"diff": "@@ -3,7 +3,7 @@ help:\n@echo Please define target:\n@echo \" - Prerequisite: third_party third_party_check clean_third_party\"\n@echo \" - C++: cc test_cc clean_cc\"\n- @echo \" - Python: python test_python clean_pyt... | C++ | Apache License 2.0 | google/or-tools | Rework Python Makefile
- add help_python |
261,218 | 27.02.2018 17:44:44 | -3,600 | f2bac8d1b201ec2ba912b5a8c69fe997aadb859a | Protect PYTHON_EXECUTABLE from split | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.python.mk",
"new_path": "makefiles/Makefile.python.mk",
"diff": "@@ -23,7 +23,7 @@ endif\n# Detect python3\nifneq ($(PYTHON_EXECUTABLE),)\n-ifeq ($(shell $(PYTHON_EXECUTABLE) -c \"from sys import version_info as v; print (str(v[0]))\"),3)\n+... | C++ | Apache License 2.0 | google/or-tools | Protect PYTHON_EXECUTABLE from split |
261,218 | 23.02.2018 09:11:40 | -3,600 | f529e1c7fb396d5ed669689a3672159dbc66e74a | Always honor the WINDOWS_PATH_TO_PYTHON variable
When building Makefile.local we must take into account
WINDOWS_PATH_TO_PYTHON variable if exist
Previous bug:
$ make clean_third_party
$ python --version
Python 3.6.3
$ make detect WINDOWS_PATH_TO_PYTHON=c:\python27-64
...
create Makefile.local
...
$ type Makefile.local
...
WINDOWS_PATH_TO_PYTHON=c:\python36-64 | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.port.mk",
"new_path": "makefiles/Makefile.port.mk",
"diff": "@@ -183,6 +183,7 @@ ifeq ($(SYSTEM),win)\nendif\n# Detect Python\n+ ifeq ($(WINDOWS_PATH_TO_PYTHON),)\nDETECTED_PATH_TO_PYTHON = $(shell python -c \"from sys import executable; fro... | C++ | Apache License 2.0 | google/or-tools | Always honor the WINDOWS_PATH_TO_PYTHON variable
- When building Makefile.local we must take into account
WINDOWS_PATH_TO_PYTHON variable if exist
Previous bug:
$ make clean_third_party
$ python --version
Python 3.6.3
$ make detect WINDOWS_PATH_TO_PYTHON=c:\python27-64
...
create Makefile.local
...
$ type Makefile.local
...
WINDOWS_PATH_TO_PYTHON=c:\python36-64 |
261,218 | 23.02.2018 09:29:54 | -3,600 | 1b41a7a240882f26b5420bb2d1c9781587326529 | Update WINDOWS_PATH_TO_PYTHON once python detected if empty | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.port.mk",
"new_path": "makefiles/Makefile.port.mk",
"diff": "@@ -190,6 +190,7 @@ ifeq ($(SYSTEM),win)\nSELECTED_PATH_TO_PYTHON = WINDOWS_PATH_TO_PYTHON =\\# python was not found. Set this variable to the path to python to build the python fi... | C++ | Apache License 2.0 | google/or-tools | Update WINDOWS_PATH_TO_PYTHON once python detected if empty |
261,218 | 23.02.2018 14:55:24 | -3,600 | 671cf273b17b2b3a8b59ae46ce1cec41da861ad7 | Rework Java Makefile | [
{
"change_type": "MODIFY",
"old_path": "Makefile",
"new_path": "Makefile",
"diff": "@@ -4,7 +4,7 @@ help:\n@echo \" - Prerequisite: third_party third_party_check clean_third_party\"\n@echo \" - C++: cc test_cc clean_cc\"\n@echo \" - Python: python help_python test_python clean_python\"\n- @echo \" -... | C++ | Apache License 2.0 | google/or-tools | Rework Java Makefile |
261,218 | 21.02.2018 17:26:04 | -3,600 | 02972d6b95ab5318ad5432ccd8031d5950834e0b | Rework F# Makefile
rename F# targets to follow the naming convention
add test_fsharp target | [
{
"change_type": "MODIFY",
"old_path": "Makefile",
"new_path": "Makefile",
"diff": "@@ -6,9 +6,9 @@ help:\n@echo \" - Python: python help_python test_python clean_python\"\n@echo \" - Java: java help_java test_java clean_java\"\n@echo \" - .NET (CSharp): csharp test_csharp clean_csharp\"\n- @echo \"... | C++ | Apache License 2.0 | google/or-tools | Rework F# Makefile
- rename F# targets to follow the naming convention
- add test_fsharp target |
261,218 | 27.02.2018 13:43:58 | -3,600 | 0a32b6d978a19a0e65a21e94a15828b9cc772d2d | Add Travis CI job for F# | [
{
"change_type": "MODIFY",
"old_path": ".travis.yml",
"new_path": ".travis.yml",
"diff": "@@ -24,6 +24,11 @@ matrix:\nlanguage: cpp\ncompiler: gcc\nenv: BUILDER=make DISTRO=native LANGUAGE=csharp\n+ - os: linux\n+ dist: trusty\n+ language: cpp\n+ compiler: gcc\n+ env: BUILDER=make DISTRO=native LANG... | C++ | Apache License 2.0 | google/or-tools | Add Travis CI job for F# |
261,218 | 21.02.2018 17:27:58 | -3,600 | 945b94a55e560f7795eb5f2b3895a6903b31f7ed | Rework C# Makefile
Start Nuget Makefile target rework.
Fix C# compiler path containing spaces on Windows
e.g.:
PATH_TO_CSHARP_COMPILER = C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\MSBuild\15.0\Bin\Roslyn\csc.exe
try to follow the pypi convention
pypi_archive -> nuget_archive
pypi_upload -> nuget_upload | [
{
"change_type": "MODIFY",
"old_path": "Makefile",
"new_path": "Makefile",
"diff": "@@ -5,7 +5,7 @@ help:\n@echo \" - C++: cc test_cc clean_cc\"\n@echo \" - Python: python help_python test_python clean_python\"\n@echo \" - Java: java help_java test_java clean_java\"\n- @echo \" - .NET (CSharp): csha... | C++ | Apache License 2.0 | google/or-tools | Rework C# Makefile
- Start Nuget Makefile target rework.
- Fix C# compiler path containing spaces on Windows
e.g.:
PATH_TO_CSHARP_COMPILER = C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\MSBuild\15.0\Bin\Roslyn\csc.exe
- try to follow the pypi convention
- pypi_archive -> nuget_archive
- pypi_upload -> nuget_upload |
261,218 | 23.02.2018 09:20:38 | -3,600 | f3f7aef03b8cfe0eb1120d1945f07d65f5e57dc9 | Always honor the PATH_TO_CSHARP_COMPILER variable on Windows
When building Makefile.local we must take into account
PATH_TO_CSHARP_COMPILER variable if exist
Previous bug:
$ make clean_third_party
$ make detect PATH_TO_CSHARP_COMPILER=foo
...
create Makefile.local
...
$ type Makefile.local
...
PATH_TO_CSHARP_COMPILER=bar | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.port.mk",
"new_path": "makefiles/Makefile.port.mk",
"diff": "@@ -198,13 +198,16 @@ ifeq ($(SYSTEM),win)\nWINDOWS_PYTHON_VERSION = $(shell \"$(WINDOWS_PATH_TO_PYTHON)\\python\" -c \"from sys import version_info as v; print (str(v[0]) + str(v[... | C++ | Apache License 2.0 | google/or-tools | Always honor the PATH_TO_CSHARP_COMPILER variable on Windows
- When building Makefile.local we must take into account
PATH_TO_CSHARP_COMPILER variable if exist
Previous bug:
$ make clean_third_party
$ make detect PATH_TO_CSHARP_COMPILER=foo
...
create Makefile.local
...
$ type Makefile.local
...
PATH_TO_CSHARP_COMPILER=bar |
261,218 | 28.02.2018 10:02:06 | -3,600 | 32f5c8c52a2b4cbe4c0108deb4625b920c82ecbe | Add help_cc target | [
{
"change_type": "MODIFY",
"old_path": "Makefile",
"new_path": "Makefile",
"diff": "help:\n@echo Please define target:\n@echo \" - Prerequisite: third_party third_party_check clean_third_party\"\n- @echo \" - C++: cc test_cc clean_cc\"\n+ @echo \" - C++: cc help_cc test_cc clean_cc\"\n@echo \" - Pyt... | C++ | Apache License 2.0 | google/or-tools | Add help_cc target |
261,218 | 27.02.2018 13:44:14 | -3,600 | a9ab55e3e6bb6970a8f9249f508d9450d89c23df | Rework AppVeyor CI jobs | [
{
"change_type": "ADD",
"old_path": null,
"new_path": ".appveyor.yml",
"diff": "+version: '{build}'\n+shallow_clone: true\n+\n+platform: x64\n+\n+environment:\n+ MSBUILD_FLAGS: /verbosity:minimal /maxcpucount\n+ matrix:\n+# Makefile\n+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017\n+ VS: 2017\n+... | C++ | Apache License 2.0 | google/or-tools | Rework AppVeyor CI jobs |
261,218 | 27.02.2018 14:49:18 | -3,600 | 2bd7f9d1bb940bf099076e759e5c7d25ea3135f3 | Fix help_XXX target on Windows | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.csharp.mk",
"new_path": "makefiles/Makefile.csharp.mk",
"diff": ".PHONY: help_csharp # Generate list of targets with descriptions.\nhelp_csharp:\n@echo Use one of the following targets:\n+ifeq ($(SYSTEM),win)\n+ @tools\\grep.exe \"^.PHONY: .... | C++ | Apache License 2.0 | google/or-tools | Fix help_XXX target on Windows |
261,218 | 27.02.2018 14:55:12 | -3,600 | 70114a411ac80f256fcbe939e293f09b67ee0941 | Windows: replace "where" by "tools\which"
silent which.exe in case of error
Otherwise you'll get the too verbose path | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.csharp.mk",
"new_path": "makefiles/Makefile.csharp.mk",
"diff": "@@ -14,7 +14,7 @@ CSHARP_COMPILER ?= csc.exe\nifneq ($(PATH_TO_CSHARP_COMPILER),)\nCSHARP_EXECUTABLE := \"$(PATH_TO_CSHARP_COMPILER)\"\nelse\n-CSHARP_EXECUTABLE := \"$(shell to... | C++ | Apache License 2.0 | google/or-tools | Windows: replace "where" by "tools\which"
- silent which.exe in case of error
Otherwise you'll get the too verbose path |
261,218 | 28.02.2018 10:11:36 | -3,600 | 3bb38cc1c54ffd380521bb87579aefb8c8d61f17 | Clean Makefile on Windows
Appveyor fixup
Windows create dependencies/archives dir
Correct third_party_win diri path
Correct zlib dir for Windows Makefile
use of $(WHICH)
Add $(GREP) | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.csharp.mk",
"new_path": "makefiles/Makefile.csharp.mk",
"diff": "@@ -14,7 +14,7 @@ CSHARP_COMPILER ?= csc.exe\nifneq ($(PATH_TO_CSHARP_COMPILER),)\nCSHARP_EXECUTABLE := \"$(PATH_TO_CSHARP_COMPILER)\"\nelse\n-CSHARP_EXECUTABLE := \"$(shell to... | C++ | Apache License 2.0 | google/or-tools | Clean Makefile on Windows
-Appveyor fixup
- Windows create dependencies/archives dir
- Correct third_party_win diri path
- Correct zlib dir for Windows Makefile
- use of $(WHICH)
- Add $(GREP) |
261,218 | 01.03.2018 11:48:55 | -3,600 | 7793b23c870613a946db3e6039f217d545daff1f | fixing python on windows | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.port.mk",
"new_path": "makefiles/Makefile.port.mk",
"diff": "@@ -189,14 +189,13 @@ ifeq ($(SYSTEM),win)\nifeq ($(wildcard $(CANONIC_DETECTED_PATH_TO_PYTHON)),)\nSELECTED_PATH_TO_PYTHON = WINDOWS_PATH_TO_PYTHON =\\# python was not found. Set ... | C++ | Apache License 2.0 | google/or-tools | fixing python on windows |
261,218 | 28.02.2018 15:27:13 | -3,600 | 819b921fe3c3ecd5fea2c24e838e8cb58025cd3d | Add "make help_%LANGUAGE%" to AppVeyor | [
{
"change_type": "MODIFY",
"old_path": ".appveyor.yml",
"new_path": ".appveyor.yml",
"diff": "@@ -74,6 +74,7 @@ before_build:\nbuild_script:\n- if \"%BUILDER%\"==\"cmake\" cmake --build build --config Release --target ALL_BUILD -- %MSBUILD_FLAGS%\n- if \"%BUILDER%\"==\"make\" tools\\make third_party... | C++ | Apache License 2.0 | google/or-tools | Add "make help_%LANGUAGE%" to AppVeyor |
261,218 | 28.02.2018 14:52:18 | -3,600 | 9945a0714fd83e2227e4cd0823def2f1d444e965 | Verify there is no sh.exe on windows path
Makefile on windows always try to use sh.exe
BUT we need cmd.exe | [
{
"change_type": "MODIFY",
"old_path": ".appveyor.yml",
"new_path": ".appveyor.yml",
"diff": "@@ -69,6 +69,7 @@ before_build:\n- python -m pip install virtualenv wheel\n# - set PATH=\"C:\\Program Files\\Java\\jdk1.8.0\\bin\";%PATH%\n- if \"%BUILDER%\"==\"cmake\" cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=... | C++ | Apache License 2.0 | google/or-tools | Verify there is no sh.exe on windows path (#576)
- Makefile on windows always try to use sh.exe
BUT we need cmd.exe |
261,218 | 01.03.2018 16:31:48 | -3,600 | 7071bd85da1d45dc1bb63de63f7907db31527820 | Update SWIG URL on Windows | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.win.mk",
"new_path": "makefiles/Makefile.third_party.win.mk",
"diff": "@@ -326,17 +326,18 @@ dependencies\\sources\\Cbc-$(CBC_TAG)\\configure:\ntools\\unzip -q -d dependencies\\sources dependencies\\archives\\Cbc-$(CBC_TAG).zip\n... | C++ | Apache License 2.0 | google/or-tools | Update SWIG URL on Windows (#601) |
261,218 | 02.03.2018 09:17:49 | -3,600 | 6f0b6af5d5f5036e6ddd9776933c15915ad9da0a | Fix windows python executable search path | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.python.mk",
"new_path": "makefiles/Makefile.python.mk",
"diff": "@@ -14,7 +14,7 @@ OR_TOOLS_PYTHONPATH = $(OR_ROOT_FULL)$(CPSEP)$(OR_ROOT_FULL)$Sdependencies$Ssour\nifeq ($(SYSTEM),win)\nPYTHON_COMPILER ?= python.exe\nifneq ($(WINDOWS_PATH_T... | C++ | Apache License 2.0 | google/or-tools | Fix windows python executable search path |
261,218 | 02.03.2018 09:56:34 | -3,600 | 80e8676b2145b749ea99adffced6c74830ad9129 | Add detect_cc | [
{
"change_type": "MODIFY",
"old_path": "Makefile",
"new_path": "Makefile",
"diff": "@@ -77,6 +77,6 @@ ifeq ($(wildcard dependencies/install/include/gflags/gflags.h),)\nendif\n.PHONY: detect\n-detect: detect_port detect_python detect_java detect_csharp detect_fsharp\n+detect: detect_port detect_cc de... | C++ | Apache License 2.0 | google/or-tools | Add detect_cc |
261,218 | 02.03.2018 10:10:48 | -3,600 | 50b9e826e2f3174ac6b58cf7b7a6f8eb28073b47 | Fix Travis CI swig
Sourceforge is down try to use github swig/swig release instead. | [
{
"change_type": "MODIFY",
"old_path": ".travis/install.sh",
"new_path": ".travis/install.sh",
"diff": "@@ -5,10 +5,9 @@ set -e\nfunction installswig() {\n# Need SWIG >= 3.0.8\ncd /tmp/ &&\n- curl -s -J -O -k -L \\\n- 'https://sourceforge.net/projects/swig/files/swig/swig-3.0.12/swig-3.0.12.tar.gz/d... | C++ | Apache License 2.0 | google/or-tools | Fix Travis CI swig
Sourceforge is down try to use github swig/swig release instead. |
261,218 | 02.03.2018 10:12:42 | -3,600 | 52ae4725b1d63f46d3511a76973221bf644c8a57 | Add missing python six package to AppVeyor CI | [
{
"change_type": "MODIFY",
"old_path": ".appveyor.yml",
"new_path": ".appveyor.yml",
"diff": "@@ -66,7 +66,7 @@ before_build:\n- set PATH=C:\\Python36-x64;%PATH%\n- tools\\which python.exe\n- python -V\n- - python -m pip install virtualenv wheel\n+ - python -m pip install virtualenv wheel six\n# - s... | C++ | Apache License 2.0 | google/or-tools | Add missing python six package to AppVeyor CI |
261,218 | 02.03.2018 10:20:14 | -3,600 | 7740865c192eea42a595f5ee02f66185466ddd4a | Fix test_sat_model on Windows Makefile | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.test.mk",
"new_path": "makefiles/Makefile.test.mk",
"diff": "@@ -30,7 +30,7 @@ test_csharp_examples: \\\n$(CSHARPEXE) \\\n$(BIN_DIR)/testlp$(CLR_EXE_SUFFIX).exe \\\n$(BIN_DIR)/testcp$(CLR_EXE_SUFFIX).exe \\\n- $(BIN_DIR)$Stest_sat_model$(CLR... | C++ | Apache License 2.0 | google/or-tools | Fix test_sat_model on Windows Makefile |
261,218 | 02.03.2018 10:56:30 | -3,600 | 8af77c2f0701f95b8625cc2684989982008b8ced | Fix Travis CI Python3 install | [
{
"change_type": "MODIFY",
"old_path": ".travis/install.sh",
"new_path": ".travis/install.sh",
"diff": "@@ -56,7 +56,7 @@ if [ \"${BUILDER}\" == make ]; then\nbrew install swig;\nfi\nif [ \"${LANGUAGE}\" == python ]; then\n- brew install python3;\n+ brew upgrade python;\npython3.6 -m pip install -q ... | C++ | Apache License 2.0 | google/or-tools | Fix Travis CI Python3 install |
261,218 | 02.03.2018 11:40:14 | -3,600 | b38a57d3bb1ac2c0c854ebe4c27a7ab4dda18997 | avoid error message when sh.exe no found on Windows | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.win.mk",
"new_path": "makefiles/Makefile.win.mk",
"diff": "@@ -49,9 +49,9 @@ FZ_EXE = fzn-or-tools$E\n# We Can't force SHELL to cmd.exe if sh.exe is in the PATH\n# cf https://www.gnu.org/software/make/manual/html_node/Choosing-the-Shell.html... | C++ | Apache License 2.0 | google/or-tools | avoid error message when sh.exe no found on Windows |
261,218 | 02.03.2018 13:41:00 | -3,600 | 51b56430f59ec5ecbbf83820fcf1644af786aed6 | Rework Makefile help | [
{
"change_type": "MODIFY",
"old_path": "Makefile",
"new_path": "Makefile",
"diff": "# Top level declarations\n-help:\n- @echo Please define target:\n- @echo \" - Prerequisite: third_party third_party_check clean_third_party\"\n- @echo \" - C++: cc help_cc test_cc clean_cc\"\n- @echo \" - Python: pyt... | C++ | Apache License 2.0 | google/or-tools | Rework Makefile help |
261,218 | 02.03.2018 15:20:31 | -3,600 | c93e50ca8214167cc917e0f3f7c86bdac38a599d | AppVeyor: build for "all" language instead.
Since we only have one job we can't have a specific job per language
(otherwise it take severals hours)
To revert if we buy more workers... | [
{
"change_type": "MODIFY",
"old_path": ".appveyor.yml",
"new_path": ".appveyor.yml",
"diff": "@@ -10,36 +10,12 @@ environment:\n- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017\nVS: 2017\nBUILDER: make\n- LANGUAGE: cc\n- - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017\n- VS: 2017\n- BUILDER: make... | C++ | Apache License 2.0 | google/or-tools | AppVeyor: build for "all" language instead.
Since we only have one job we can't have a specific job per language
(otherwise it take severals hours)
To revert if we buy more workers... |
261,218 | 02.03.2018 15:37:29 | -3,600 | 3c72a9c0c421eaa81d958b2493a4877a6228b8a6 | Fix Swig URL for CMake Windows | [
{
"change_type": "MODIFY",
"old_path": "cmake/external/swig.CMakeLists.txt",
"new_path": "cmake/external/swig.CMakeLists.txt",
"diff": "@@ -4,7 +4,8 @@ project(swig-download NONE)\ninclude(ExternalProject)\nExternalProject_Add(SWIG_project\n- URL \"http://prdownloads.sourceforge.net/swig/swigwin-3.0... | C++ | Apache License 2.0 | google/or-tools | Fix Swig URL for CMake Windows |
261,218 | 02.03.2018 15:58:25 | -3,600 | 8bfd7fb96ed0de0a37cb041dbb9a483572714202 | Add DEPENDENCIES_LNK to detect_cc | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.cpp.mk",
"new_path": "makefiles/Makefile.cpp.mk",
"diff": "@@ -666,6 +666,7 @@ detect_cc:\n@echo OR_TOOLS_LIBS = $(OR_TOOLS_LIBS)\n@echo OR_TOOLS_LNK = $(OR_TOOLS_LNK)\n@echo OR_TOOLS_LD_FLAGS = $(OR_TOOLS_LD_FLAGS)\n+ @echo DEPENDENCIES_LNK... | C++ | Apache License 2.0 | google/or-tools | Add DEPENDENCIES_LNK to detect_cc |
261,218 | 05.03.2018 08:40:15 | -3,600 | ae6ca685e7a1e8a37d51d5aa5b422083fed77ffe | Only use --nocopyfsharpcore with VS 2017 | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.fsharp.mk",
"new_path": "makefiles/Makefile.fsharp.mk",
"diff": "@@ -33,10 +33,16 @@ ifdef CLR_KEYFILE\nFS_SIGNING_FLAGS := $(FLAG_PREFIX)keyfile:$(CLR_KEYFILE)\nendif\n+ifeq (\"$(VisualStudioVersion)\", \"15.0\")\n+FS_NOCPYCORE := $(FLAG_PR... | C++ | Apache License 2.0 | google/or-tools | Only use --nocopyfsharpcore with VS 2017 (#600) |
261,218 | 05.03.2018 11:56:58 | -3,600 | 6e7ff7567ec1a68c61173fac0acb0d9d0dcfd159 | Fix Cbc download with brew wget
missing --no-check-certificate | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.unix.mk",
"new_path": "makefiles/Makefile.third_party.unix.mk",
"diff": "@@ -254,7 +254,7 @@ dependencies/sources/Cbc-$(CBC_TAG)/Makefile: dependencies/sources/Cbc-$(CBC_TAG\nCBC_ARCHIVE:=https://www.coin-or.org/download/source/C... | C++ | Apache License 2.0 | google/or-tools | Fix Cbc download with brew wget
- missing --no-check-certificate |
261,218 | 05.03.2018 13:49:24 | -3,600 | c4bfef29e16bde44228e57496083eb3f41497284 | Fix windows python executable... | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.python.mk",
"new_path": "makefiles/Makefile.python.mk",
"diff": "@@ -14,7 +14,7 @@ OR_TOOLS_PYTHONPATH = $(OR_ROOT_FULL)$(CPSEP)$(OR_ROOT_FULL)$Sdependencies$Ssour\nifeq ($(SYSTEM),win)\nPYTHON_COMPILER ?= python.exe\nifneq ($(WINDOWS_PATH_T... | C++ | Apache License 2.0 | google/or-tools | Fix windows python executable... |
261,218 | 06.03.2018 10:10:58 | -3,600 | 54ceb6d56b04dce42904bda9651314fb81aee640 | Remove vector packing from python ortools_examples | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.python.mk",
"new_path": "makefiles/Makefile.python.mk",
"diff": "@@ -333,10 +333,10 @@ python_examples_archive:\n$(COPY) tools$SREADME.examples.python temp$Sortools_examples$SREADME.txt\n$(COPY) LICENSE-2.0.txt temp$Sortools_examples\nifeq (... | C++ | Apache License 2.0 | google/or-tools | Remove vector packing from python ortools_examples (#607) |
261,218 | 06.03.2018 10:52:09 | -3,600 | c79da1fd3c0acae45e89d491caf2c5a89ec7de1f | Fix debian-9 docker build | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/debian-9.Dockerfile",
"new_path": "tools/docker/debian-9.Dockerfile",
"diff": "@@ -2,7 +2,7 @@ FROM debian:9\nRUN apt-get update\n-RUN apt-get -y install git autoconf libtool zlib1g-dev gawk g++ curl cmake subversion make mono-complete swig lsb-re... | C++ | Apache License 2.0 | google/or-tools | Fix debian-9 docker build (#606) |
261,218 | 06.03.2018 11:25:17 | -3,600 | 26212e53e03f32f29054de4506c11f355e8edf40 | Protect executable path from space | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.csharp.mk",
"new_path": "makefiles/Makefile.csharp.mk",
"diff": "@@ -12,9 +12,9 @@ endif\nifeq ($(SYSTEM),win)\nCSHARP_COMPILER ?= csc.exe\nifneq ($(PATH_TO_CSHARP_COMPILER),)\n-CSHARP_EXECUTABLE := \"$(PATH_TO_CSHARP_COMPILER)\"\n+CSHARP_EX... | C++ | Apache License 2.0 | google/or-tools | Protect executable path from space (#608) |
261,230 | 06.03.2018 11:42:06 | -3,600 | a4f4c2d5a602ad0e5fdbc038b1198ed2c5bb6575 | move check_third_party into ortoolslib target; avoid rebuilding C# all the time | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.cpp.mk",
"new_path": "makefiles/Makefile.cpp.mk",
"diff": "@@ -12,7 +12,7 @@ endif\n# Main target\n.PHONY: cc # Build C++ OR-Tools.\n-cc: third_party_check ortoolslibs ccexe\n+cc: ortoolslibs ccexe\n.PHONY: test_cc # Test C++ OR-Tools using ... | C++ | Apache License 2.0 | google/or-tools | move check_third_party into ortoolslib target; avoid rebuilding C# all the time |
261,230 | 06.03.2018 12:56:14 | -3,600 | 76809379dff0da89b09effc33b45784c353f77d9 | simplify C# dependencies, remove build loop on python | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.csharp.mk",
"new_path": "makefiles/Makefile.csharp.mk",
"diff": "@@ -180,8 +180,8 @@ csharpexe: $(CSHARPEXE)\n# Assembly Info\n-$(GEN_DIR)/com/google/ortools/properties/GitVersion$(OR_TOOLS_VERSION).txt:\n- -$(MKDIR_P) $(GEN_DIR)/com/google/... | C++ | Apache License 2.0 | google/or-tools | simplify C# dependencies, remove build loop on python |
261,230 | 06.03.2018 13:01:48 | -3,600 | 06fbcd714ea2b62ca2053bc78509f02c104164d4 | add depdendency on ortoolslibs in netstandard makefile target | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.csharp.mk",
"new_path": "makefiles/Makefile.csharp.mk",
"diff": "@@ -223,7 +223,7 @@ netstandard: clean_dotnet_generated netstandardortools\nBUILT_LANGUAGES +=, .NETSTANDARD\nendif\n-netstandardortools: $(BIN_DIR)/$(NETSTANDARD_ORTOOLS_DLL_N... | C++ | Apache License 2.0 | google/or-tools | add depdendency on ortoolslibs in netstandard makefile target |
261,218 | 06.03.2018 13:58:23 | -3,600 | 6eff7e447666c35f0ee0fa203a56151d28b881bc | Add newline at end of each help_* targets | [
{
"change_type": "MODIFY",
"old_path": "Makefile",
"new_path": "Makefile",
"diff": "@@ -74,7 +74,11 @@ help_usage:\n@echo test, test_all: Test OR-Tools for all available languages.\n@echo clean, clean_all: Clean output from previous build for all available languages \\(won\\'t clean third party\\).\... | C++ | Apache License 2.0 | google/or-tools | Add newline at end of each help_* targets |
261,218 | 06.03.2018 14:34:17 | -3,600 | 9b41cae63967716df88b5c5f94db02fd525b4c39 | Update detect_* targets | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.cpp.mk",
"new_path": "makefiles/Makefile.cpp.mk",
"diff": "@@ -663,12 +663,18 @@ rcc: $(BIN_DIR)$S$(basename $(notdir $(EX)))$E\n.PHONY: detect_cc # Show variables used to build C++ OR-Tools.\ndetect_cc:\n+ @echo Relevant info for the C++ bu... | C++ | Apache License 2.0 | google/or-tools | Update detect_* targets |
261,218 | 06.03.2018 15:03:19 | -3,600 | 11a22957a41873576d69262017e81e437c0905d8 | Fix echo blankline on windows | [
{
"change_type": "MODIFY",
"old_path": "Makefile",
"new_path": "Makefile",
"diff": "@@ -75,7 +75,7 @@ help_usage:\n@echo clean, clean_all: Clean output from previous build for all available languages \\(won\\'t clean third party\\).\n@echo detect, detect_all: Show variables used to build OR-Tools fo... | C++ | Apache License 2.0 | google/or-tools | Fix echo blankline on windows |
261,218 | 06.03.2018 13:58:56 | -3,600 | 79f01620e0a7f12290afc02cda2c173c0aa35522 | Fix Docker delivery targets
missing wget need to download Cbc | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/Makefile",
"new_path": "tools/docker/Makefile",
"diff": "@@ -6,7 +6,7 @@ export:\nimages: \\\nubuntu-14.04-image \\\nubuntu-16.04-image \\\n- ubuntu-17.04-image \\\n+ ubuntu-17.10-image \\\ncentos-7-image \\\ndebian-9-image \\\nmanylinux1-image\n@... | C++ | Apache License 2.0 | google/or-tools | Fix Docker delivery targets (#609)
- missing wget need to download Cbc |
261,230 | 06.03.2018 18:23:24 | -3,600 | 8bb6507a231ed52d33c7d90298380f89b78d26c8 | fix bop compilation | [
{
"change_type": "MODIFY",
"old_path": "ortools/bop/bop_portfolio.cc",
"new_path": "ortools/bop/bop_portfolio.cc",
"diff": "@@ -415,7 +415,7 @@ std::string OptimizerSelector::PrintStats(OptimizerIndex optimizer_index) const\nreturn absl::StrFormat(\n\" %40s : %3d/%-3d (%6.2f%%) Total gain: %6d Total... | C++ | Apache License 2.0 | google/or-tools | fix bop compilation |
261,230 | 07.03.2018 11:30:39 | -3,600 | fa09d4949a9266856a491dd4fa60dfd1e611c599 | add SimpleMaxFlow::SetArcCapacity; change to the base library | [
{
"change_type": "MODIFY",
"old_path": "ortools/base/casts.h",
"new_path": "ortools/base/casts.h",
"diff": "#include <cstring>\n+namespace absl {\ntemplate <class Dest, class Source>\ninline Dest bit_cast(const Source& source) {\nDest dest;\nmemcpy(&dest, &source, sizeof(dest));\nreturn dest;\n}\n+}... | C++ | Apache License 2.0 | google/or-tools | add SimpleMaxFlow::SetArcCapacity; change to the base library |
261,218 | 07.03.2018 11:18:59 | -3,600 | 816cf75f5e9e5b5c8b801d341acdccb780a42c1a | Add install_python target | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.python.mk",
"new_path": "makefiles/Makefile.python.mk",
"diff": "@@ -38,6 +38,7 @@ endif\n.PHONY: python # Build Python OR-Tools.\n.PHONY: test_python # Test Python OR-Tools using various examples.\n+.PHONY: install_python # Install Python O... | C++ | Apache License 2.0 | google/or-tools | Add install_python target (#610) |
261,218 | 07.03.2018 13:35:15 | -3,600 | aa6d614c90f8e838a54bf980376772404b5ec74f | Fix Python2.7 setup.py | [
{
"change_type": "MODIFY",
"old_path": "tools/setup.py",
"new_path": "tools/setup.py",
"diff": "@@ -53,6 +53,7 @@ setup(\n'ortools.sat' : ['_pywrapsat.dll'],\nDELETEWIN 'ortools' : ['libortools.DLL']\n},\n+ include_package_data=True,\nlicense='Apache 2.0',\nauthor = 'Google Inc',\nauthor_email = 'lp... | C++ | Apache License 2.0 | google/or-tools | Fix Python2.7 setup.py (#551) |
261,218 | 07.03.2018 15:19:57 | -3,600 | 045e9f7d6268d1aeff1a45e3c2e967ba73c6f0cb | Check cmake is available | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.unix.mk",
"new_path": "makefiles/Makefile.third_party.unix.mk",
"diff": "@@ -187,8 +187,6 @@ ortools/gen/ortools/sat:\n# Install gflags. This uses cmake.\ninstall_gflags: dependencies/install/include/gflags/gflags.h\n-CMAKE_MISSI... | C++ | Apache License 2.0 | google/or-tools | Check cmake is available (#611) |
261,218 | 05.03.2018 17:26:18 | -3,600 | 03c9749a8d0cb3997e011d76827537adfd52533e | Rework build_delivery_unix.sh | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "tools/build_delivery_unix.sh",
"diff": "+#!/bin/bash\n+set -x\n+set -e\n+\n+# Check all prerequisite\n+# cc\n+which cmake | xargs echo \"cmake: \" | tee build.log\n+which make | xargs echo \"make: \" | tee -a build.log\n+which swig | xargs echo ... | C++ | Apache License 2.0 | google/or-tools | Rework build_delivery_unix.sh (#613) |
261,218 | 06.03.2018 11:26:09 | -3,600 | 547663ff788062813906e3f6f0d09630bdc1696b | Rework tools\build_delivery_win.cmd | [
{
"change_type": "MODIFY",
"old_path": "tools/build_delivery_win.cmd",
"new_path": "tools/build_delivery_win.cmd",
"diff": "+@echo off\nREM /!\\ THIS SCRIPT SUPPOSE A FIXED PATH FOR PYTHON /!\\\nREM Each blocks could be triggered independently (i.e. commenting others)\nREM run it as: cmd /c tools\\b... | C++ | Apache License 2.0 | google/or-tools | Rework tools\build_delivery_win.cmd (#613) |
261,218 | 07.03.2018 17:47:37 | -3,600 | b96703d0ce61c736f3c70c64be15317a3185e72f | Use JAVA_HOME instead of JDK_DIRECTORY | [
{
"change_type": "MODIFY",
"old_path": ".travis/script.sh",
"new_path": ".travis/script.sh",
"diff": "@@ -36,7 +36,7 @@ if [ \"${BUILDER}\" == make ];then\nelif [ \"${LANGUAGE}\" == python ]; then\nmake detect UNIX_PYTHON_VER=3.6\nelif [ \"${LANGUAGE}\" == java ]; then\n- make detect JDK_DIRECTORY=/... | C++ | Apache License 2.0 | google/or-tools | Use JAVA_HOME instead of JDK_DIRECTORY (#614) |
261,218 | 08.03.2018 17:21:02 | -3,600 | 1292f58e7bf595362b92451962c4c10e27007613 | Fix wheel pure lib generation | [
{
"change_type": "MODIFY",
"old_path": "tools/setup.py",
"new_path": "tools/setup.py",
"diff": "from sys import executable\n+from os.path import join as pjoin\n+from os.path import dirname\nsetuptools_import_error_message = \"\"\"setuptools is not installed for \"\"\" + executable + \"\"\"\nPlease f... | C++ | Apache License 2.0 | google/or-tools | Fix wheel pure lib generation (#616) |
261,230 | 13.03.2018 17:20:49 | -3,600 | 8ac56302dac8e4f162b67c664316377d5f812ade | small improvements to SAT presolve; fix sat_runner | [
{
"change_type": "MODIFY",
"old_path": "examples/cpp/sat_cnf_reader.h",
"new_path": "examples/cpp/sat_cnf_reader.h",
"diff": "#include \"ortools/base/strtoint.h\"\n#include \"ortools/base/split.h\"\n#include \"ortools/base/string_view.h\"\n+#include \"ortools/base/span.h\"\n#include \"ortools/sat/bo... | C++ | Apache License 2.0 | google/or-tools | small improvements to SAT presolve; fix sat_runner |
261,230 | 14.03.2018 15:08:14 | -3,600 | 221b6757bcfef544a362eb3ebe475fcfe70dd337 | Improve circuit presolve in sat/CP | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model_presolve.cc",
"new_path": "ortools/sat/cp_model_presolve.cc",
"diff": "@@ -1377,11 +1377,13 @@ bool PresolveCircuit(ConstraintProto* ct, PresolveContext* context) {\nstd::vector<std::vector<int>> incoming_arcs;\nstd::vector<std::vector<int... | C++ | Apache License 2.0 | google/or-tools | Improve circuit presolve in sat/CP |
261,230 | 16.03.2018 16:08:42 | -3,600 | 72a3eeb6d25ed6a52f3b670ac7c6bd0c96e20b8a | fix rare crash with unsat models during presolve | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model_presolve.cc",
"new_path": "ortools/sat/cp_model_presolve.cc",
"diff": "@@ -1867,6 +1867,10 @@ void PresolveCpModel(CpModelProto* presolved_model, CpModelProto* mapping_model,\n// with the use of timestamp.\nconst int old_queue_size = queue... | C++ | Apache License 2.0 | google/or-tools | fix rare crash with unsat models during presolve |
261,218 | 12.03.2018 16:40:39 | -3,600 | 57be45802c72ac03efad4b5ac61edd4985772773 | Fix clean_python | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.python.mk",
"new_path": "makefiles/Makefile.python.mk",
"diff": "@@ -90,6 +90,22 @@ clean_python:\n-$(DEL) $(GEN_DIR)$Sortools$Slinear_solver$S*.pyc\n-$(DEL) $(GEN_DIR)$Sortools$Ssat$S*.pyc\n-$(DEL) $(GEN_DIR)$Sortools$Sutil$S*.pyc\n+ -$(DEL... | C++ | Apache License 2.0 | google/or-tools | Fix clean_python |
261,218 | 12.03.2018 16:41:20 | -3,600 | 1265d1d5b4165cbedfa70478a7f6dc37dea1be48 | Fix clean_cc
Still remains example binaries | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.cpp.mk",
"new_path": "makefiles/Makefile.cpp.mk",
"diff": "@@ -23,21 +23,23 @@ BUILT_LANGUAGES += C++\nclean_cc:\n-$(DEL) $(LIB_DIR)$S$(LIB_PREFIX)cvrptw_lib.$(LIB_SUFFIX)\n-$(DEL) $(LIB_DIR)$S$(LIB_PREFIX)dimacs.$(LIB_SUFFIX)\n+ -$(DEL) $(L... | C++ | Apache License 2.0 | google/or-tools | Fix clean_cc
Still remains example binaries |
261,218 | 12.03.2018 17:16:26 | -3,600 | 8f69f0b3aa5d250b2011f3372fc7a3073ec71ef4 | Remove C++ examples in clean_cc | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.cpp.mk",
"new_path": "makefiles/Makefile.cpp.mk",
"diff": "@@ -43,6 +43,7 @@ clean_cc:\n-$(DEL) $(OBJ_DIR)$Sutil$S*.$O\n-$(DEL) $(BIN_DIR)$Sfz$E\n-$(DEL) $(BIN_DIR)$Ssat_runner$E\n+ -$(DEL) $(addsuffix $E, $(addprefix $(BIN_DIR)$S, $(CC_EXAM... | C++ | Apache License 2.0 | google/or-tools | Remove C++ examples in clean_cc |
261,218 | 12.03.2018 17:17:02 | -3,600 | 699ee5c0880653de916fb0757359f468aa11b7ad | Remove Flatzink bin/parser_main in clean_cc | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.cpp.mk",
"new_path": "makefiles/Makefile.cpp.mk",
"diff": "@@ -42,6 +42,7 @@ clean_cc:\n-$(DEL) $(OBJ_DIR)$Ssat$S*.$O\n-$(DEL) $(OBJ_DIR)$Sutil$S*.$O\n-$(DEL) $(BIN_DIR)$Sfz$E\n+ -$(DEL) $(BIN_DIR)$Sparser_main$E\n-$(DEL) $(BIN_DIR)$Ssat_run... | C++ | Apache License 2.0 | google/or-tools | Remove Flatzink bin/parser_main in clean_cc |
261,218 | 14.03.2018 12:48:52 | -3,600 | cea374d481dc8e76ab4d23e0e7cd095eab7ae2fb | Fix C# example and test management
now `make clean_csharp` remove only csharp binaries | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.csharp.mk",
"new_path": "makefiles/Makefile.csharp.mk",
"diff": "@@ -54,7 +54,8 @@ clean_csharp: clean_dotnet_generated\n-$(DEL) $(LIB_DIR)$S$(LIB_PREFIX)$(CLR_ORTOOLS_FZ_DLL_NAME)*.exp\n-$(DEL) $(LIB_DIR)$S$(LIB_PREFIX)$(CLR_ORTOOLS_FZ_DLL_... | C++ | Apache License 2.0 | google/or-tools | Fix C# example and test management
- now `make clean_csharp` remove only csharp binaries |
261,218 | 14.03.2018 17:45:05 | -3,600 | 20492396a3f2959ee134c3a12244e559a4321774 | Make rcc won't use the csc compiler (fix | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.csharp.mk",
"new_path": "makefiles/Makefile.csharp.mk",
"diff": "@@ -541,12 +541,14 @@ techtalk_scheduling: $(BIN_DIR)/techtalk_scheduling$(CLR_EXE_SUFFIX).exe\nelse # This generic rule will be used if EX variable is set\n-$(BIN_DIR)$S$(base... | C++ | Apache License 2.0 | google/or-tools | Make rcc won't use the csc compiler (fix #619) |
261,218 | 16.03.2018 16:12:54 | -3,600 | 2e4c5b3617c433ab5ccdad6f5f5f7ccaa82adda7 | Fix Protobuf version clone on unix (Fix | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.unix.mk",
"new_path": "makefiles/Makefile.third_party.unix.mk",
"diff": "@@ -220,7 +220,9 @@ dependencies/sources/protobuf-$(PROTOBUF_TAG)/cmake/build/Makefile: dependencies\n..\ndependencies/sources/protobuf-$(PROTOBUF_TAG)/cmak... | C++ | Apache License 2.0 | google/or-tools | Fix Protobuf version clone on unix (Fix #620). |
261,230 | 23.03.2018 15:22:38 | -3,600 | 5f95dc86fcc5cb20d80ee6b8707f592a3c1ba972 | allow assumptions with all search mode in SAT/CP | [
{
"change_type": "MODIFY",
"old_path": "ortools/algorithms/knapsack_solver.cc",
"new_path": "ortools/algorithms/knapsack_solver.cc",
"diff": "@@ -195,7 +195,7 @@ bool KnapsackPropagator::Update(bool revert,\nvoid KnapsackPropagator::CopyCurrentStateToSolution(\nbool has_one_propagator, std::vector<b... | C++ | Apache License 2.0 | google/or-tools | allow assumptions with all search mode in SAT/CP |
261,218 | 22.03.2018 11:43:42 | -3,600 | 79c918190d9d162af79ed079d9e7281b0fedd6b9 | Unix Makefile: glog must depend "order only" on gflags. | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.unix.mk",
"new_path": "makefiles/Makefile.third_party.unix.mk",
"diff": "@@ -231,7 +231,7 @@ 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 | Unix Makefile: glog must depend "order only" on gflags. |
261,218 | 22.03.2018 14:47:35 | -3,600 | 658ad5210e73581e61de37c057e0750bfc5b846b | CMake: install missing package in user
will avoid permission issue | [
{
"change_type": "MODIFY",
"old_path": "cmake/python.cmake",
"new_path": "cmake/python.cmake",
"diff": "@@ -153,7 +153,7 @@ function(search_python_module MODULE_NAME)\nelse()\nmessage(WARNING \"Can't find python module \\\"${MODULE_NAME}\\\", install it using pip...\")\nexecute_process(\n- COMMAND $... | C++ | Apache License 2.0 | google/or-tools | CMake: install missing package in user
- will avoid permission issue |
261,218 | 22.03.2018 15:42:01 | -3,600 | ad825e4096df7431d4e81cfec9bf4b85ebe30bdd | CMake: fix wheel platlib/purelib missmatch (Fix | [
{
"change_type": "MODIFY",
"old_path": "cmake/python.cmake",
"new_path": "cmake/python.cmake",
"diff": "@@ -89,6 +89,12 @@ add_custom_command(OUTPUT setup.py dist ${PROJECT_NAME}.egg-info\nCOMMAND ${CMAKE_COMMAND} -E echo \" def has_ext_modules(self):\" >> setup.py\nCOMMAND ${CMAKE_COMMAND} -E echo ... | C++ | Apache License 2.0 | google/or-tools | CMake: fix wheel platlib/purelib missmatch (Fix #618) |
261,246 | 29.03.2018 19:53:27 | 14,400 | 25ea3fdd27bd1a8657d32ad068840b1221ef78c7 | Build CBC with --enable-cbc-parallel option
This enables multithreading support for 'unix' platforms and has
been tested to work on macOS.
However, project configs relating to Makefile.third_party.win.mk
have not been similarly modified.
Addresses issue | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.unix.mk",
"new_path": "makefiles/Makefile.third_party.unix.mk",
"diff": "@@ -250,7 +250,7 @@ dependencies/install/bin/cbc: dependencies/sources/Cbc-$(CBC_TAG)/Makefile\ncd dependencies/sources/Cbc-$(CBC_TAG) && $(SET_COMPILER) ma... | C++ | Apache License 2.0 | google/or-tools | Build CBC with --enable-cbc-parallel option
This enables multithreading support for 'unix' platforms and has
been tested to work on macOS.
However, project configs relating to Makefile.third_party.win.mk
have not been similarly modified.
Addresses issue #180. |
261,238 | 02.04.2018 18:59:54 | -19,080 | 08c594c594733646fe9c583e7143f358a2d0058e | Bumped the scipoptsuite version to 4.0.1
Updated the path to /scipoptsuite-4.0.1/scip | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.unix.mk",
"new_path": "makefiles/Makefile.third_party.unix.mk",
"diff": "@@ -320,7 +320,7 @@ Makefile.local: makefiles/Makefile.third_party.unix.mk\n@echo >> Makefile.local\n@echo \"# Define UNIX_GLPK_DIR to point to a compiled v... | C++ | Apache License 2.0 | google/or-tools | Bumped the scipoptsuite version to 4.0.1
Updated the path to /scipoptsuite-4.0.1/scip |
261,230 | 03.04.2018 07:28:26 | -7,200 | a12d754e8f23e3dacebedc482406e00ee068a5df | export CPLEX in python | [
{
"change_type": "MODIFY",
"old_path": "ortools/linear_solver/python/linear_solver.i",
"new_path": "ortools/linear_solver/python/linear_solver.i",
"diff": "@@ -193,8 +193,8 @@ from ortools.linear_solver.linear_solver_natural_api import VariableExpr\n// These aren't unit tested, as they only run on m... | C++ | Apache License 2.0 | google/or-tools | export CPLEX in python |
261,230 | 11.04.2018 13:47:07 | -7,200 | 023bc1933404ba0e942d956e94d6d9eee13ff95e | update C++ examples after changes in base library | [
{
"change_type": "MODIFY",
"old_path": "examples/cpp/fap_parser.cc",
"new_path": "examples/cpp/fap_parser.cc",
"diff": "namespace operations_research {\nvoid ParseFileByLines(const std::string& filename, std::vector<std::string>* lines) {\n- CHECK_NOTNULL(lines);\n+ CHECK(lines != nullptr);\nstd::st... | C++ | Apache License 2.0 | google/or-tools | update C++ examples after changes in base library |
261,230 | 17.04.2018 11:58:15 | -7,200 | e68e7b1b4e3626d502a0518e7856b54e0220ccf0 | move warnings to VLOG(1) in revised simplex | [
{
"change_type": "MODIFY",
"old_path": "ortools/glop/revised_simplex.cc",
"new_path": "ortools/glop/revised_simplex.cc",
"diff": "@@ -292,7 +292,7 @@ Status RevisedSimplex::Solve(const LinearProgram& lp, TimeLimit* time_limit) {\nif (reduced_costs_.ComputeMaximumDualResidual() > tolerance ||\nvariab... | C++ | Apache License 2.0 | google/or-tools | move warnings to VLOG(1) in revised simplex |
261,230 | 17.04.2018 13:00:25 | -7,200 | ebee15857707204d3d05fc2884070e55c8d8a6f8 | small changes in SAT internals | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/precedences.cc",
"new_path": "ortools/sat/precedences.cc",
"diff": "@@ -725,6 +725,7 @@ void PrecedencesPropagator::AddGreaterThanAtLeastOneOfConstraints(\nconst int old_level = solver->CurrentDecisionLevel();\nsolver->EnqueueDecisionAndBacktrackOn... | C++ | Apache License 2.0 | google/or-tools | small changes in SAT internals |
261,218 | 16.04.2018 13:33:55 | -7,200 | bbb12746aca926b65161e2875db0608102fa5e59 | cmake/external: Fix typo | [
{
"change_type": "MODIFY",
"old_path": "cmake/external/CMakeLists.txt",
"new_path": "cmake/external/CMakeLists.txt",
"diff": "@@ -46,7 +46,7 @@ endif()\n##############\nif(NOT TARGET gflags::gflags)\nmessage(STATUS \"Target gflags::gflags not found.\")\n- message(STATUS \"Adding CMake Subproject: Gf... | C++ | Apache License 2.0 | google/or-tools | cmake/external: Fix typo |
261,218 | 16.04.2018 17:09:53 | -7,200 | 27ee591ab65911daca2c7ba386b11bf1c5af2705 | Fix UNIX/WINDOWS_*_DIR Management | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.unix.mk",
"new_path": "makefiles/Makefile.unix.mk",
"diff": "# Checks if the user has overwritten default libraries and binaries.\nUNIX_GFLAGS_DIR ?= $(OR_TOOLS_TOP)/dependencies/install\n-UNIX_PROTOBUF_DIR ?= $(OR_TOOLS_TOP)/dependencies/in... | C++ | Apache License 2.0 | google/or-tools | Fix UNIX/WINDOWS_*_DIR Management |
261,218 | 16.04.2018 17:12:40 | -7,200 | 07e131ff1f3d5f972a4832583c42ab0e5144629c | Add CPLEX support on windows (EXPERIMENTAL) | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.win.mk",
"new_path": "makefiles/Makefile.win.mk",
"diff": "@@ -120,6 +120,14 @@ ifdef WINDOWS_SCIP_DIR\nSTATIC_SCIP_LNK = $(WINDOWS_SCIP_DIR)\\\\libscipopt.lib\nDYNAMIC_SCIP_LNK = $(WINDOWS_SCIP_DIR)\\\\libscipopt.lib\nendif\n+# This is need... | C++ | Apache License 2.0 | google/or-tools | Add CPLEX support on windows (EXPERIMENTAL) |
261,218 | 16.04.2018 17:14:19 | -7,200 | 0011766761e635a70b06806601fc245c51c6d2a5 | Add `make detect_third_party` | [
{
"change_type": "MODIFY",
"old_path": "Makefile",
"new_path": "Makefile",
"diff": "@@ -96,6 +96,6 @@ clean_all: clean_cc clean_python clean_java clean_csharp clean_compat clean_fsha\n@echo Or-tools have been cleaned for $(BUILT_LANGUAGES)\n.PHONY: detect_all\n-detect_all: detect_port detect_cc dete... | C++ | Apache License 2.0 | google/or-tools | Add `make detect_third_party` |
261,218 | 17.04.2018 11:56:48 | -7,200 | d025e02a552ba3b7da5ec5e759b92d1476ef3e35 | Fix `make third_party_check` on unix | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.unix.mk",
"new_path": "makefiles/Makefile.third_party.unix.mk",
"diff": "@@ -26,8 +26,20 @@ third_party: makefile_third_party install_third_party\n.PHONY: third_party_check # Check if \"make third_party\" have been run or not\nth... | C++ | Apache License 2.0 | google/or-tools | Fix `make third_party_check` on unix |
261,218 | 17.04.2018 13:05:14 | -7,200 | 975abe43aa0d2e6a63676931b1cd1474d4814ac2 | Fix `make third_party_check` on windows | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.win.mk",
"new_path": "makefiles/Makefile.third_party.win.mk",
"diff": "@@ -22,8 +22,23 @@ third_party: build_third_party makefile_third_party\n.PHONY: third_party_check # Check if \"make third_party\" have been run or not\nthird_... | C++ | Apache License 2.0 | google/or-tools | Fix `make third_party_check` on windows |
261,218 | 17.04.2018 15:29:57 | -7,200 | befe6f38dea9891cb4104c55b5da89eacace40f2 | Update unix third_party variable | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.unix.mk",
"new_path": "makefiles/Makefile.unix.mk",
"diff": "@@ -80,21 +80,16 @@ MONO_EXECUTABLE := $(shell $(WHICH) $(MONO_COMPILER))\n# This is needed to find gflags/gflags.h\nGFLAGS_INC = -I$(UNIX_GFLAGS_DIR)/include\n-# This is needed to... | C++ | Apache License 2.0 | google/or-tools | Update unix third_party variable |
261,218 | 17.04.2018 15:33:08 | -7,200 | 6320574e79d850d175757c6e719881d6ca7918c6 | Fix Cbc/Clp include path when using coin pkgsource
brew use cbc/clp/coinutils pkgsource so include are split in subdir | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.unix.mk",
"new_path": "makefiles/Makefile.third_party.unix.mk",
"diff": "@@ -35,10 +35,10 @@ endif\nifeq ($(wildcard $(UNIX_PROTOBUF_DIR)/include/google/protobuf/descriptor.h),)\n$(error Third party Protobuf files was not found! ... | C++ | Apache License 2.0 | google/or-tools | Fix Cbc/Clp include path when using coin pkgsource
- brew use cbc/clp/coinutils pkgsource so include are split in subdir |
261,218 | 17.04.2018 16:41:08 | -7,200 | 8bba9eb62cd16b465580bf6c20542f66f8260ce1 | Refactor build dirs Makefile management | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.cpp.mk",
"new_path": "makefiles/Makefile.cpp.mk",
"diff": "@@ -19,6 +19,140 @@ cc: ortoolslibs ccexe\ntest_cc: test_cc_examples\nBUILT_LANGUAGES += C++\n+MISSING_BUILD_DIRECTORIES = \\\n+ bin \\\n+ lib \\\n+ objs/algorithms \\\n+ objs/base \... | C++ | Apache License 2.0 | google/or-tools | Refactor build dirs Makefile management |
261,218 | 17.04.2018 17:14:56 | -7,200 | 406dfb38178d3e36935ae4021e98599fdea8cc0c | Add missing include/osi/coin | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.unix.mk",
"new_path": "makefiles/Makefile.unix.mk",
"diff": "@@ -92,7 +92,7 @@ CLP_INC = -I$(UNIX_CLP_DIR)/include -I$(UNIX_CLP_DIR)/include/coin -DUSE_CLP\nCLP_SWIG = $(CLP_INC)\n# Install Path used when installing coin using pkgsource\n# e... | C++ | Apache License 2.0 | google/or-tools | Add missing include/osi/coin |
261,218 | 18.04.2018 16:44:36 | -7,200 | 0904fe14a3d30228c6f00e42da4625889619006f | Fix third_party build on unix | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.unix.mk",
"new_path": "makefiles/Makefile.third_party.unix.mk",
"diff": "@@ -56,7 +56,7 @@ archives_directory:\n$(MKDIR_P) dependencies$Sarchives\n.PHONY: install_directories\n-install_directories: dependencies/install/bin depend... | C++ | Apache License 2.0 | google/or-tools | Fix third_party build on unix |
261,218 | 19.04.2018 10:26:59 | -7,200 | 0b57edd9326de5c910b4c0960a0cb24e878962a9 | Fix jobshop_scheduling.proto
wrong types used... | [
{
"change_type": "MODIFY",
"old_path": "ortools/data/jobshop_scheduling.proto",
"new_path": "ortools/data/jobshop_scheduling.proto",
"diff": "@@ -68,7 +68,7 @@ message Job {\n// The ordered sequence of tasks.\nrepeated Task tasks = 1;\n// This date, if set, specifies a hard constraint on when the jo... | C++ | Apache License 2.0 | google/or-tools | Fix jobshop_scheduling.proto
- wrong types used... |
261,230 | 19.04.2018 11:33:20 | -7,200 | 3656e7887784fb60c025b1890888af93fba2a7f2 | fix jssp proto compilation | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.gen.mk",
"new_path": "makefiles/Makefile.gen.mk",
"diff": "@@ -597,7 +597,7 @@ $(OBJ_DIR)/util/xml_helper.$O: \\\n$(GEN_DIR)/ortools/util/optional_boolean.pb.cc: \\\n$(SRC_DIR)/ortools/util/optional_boolean.proto\n- $(PROTOBUF_DIR)/bin/proto... | C++ | Apache License 2.0 | google/or-tools | fix jssp proto compilation |
261,230 | 19.04.2018 13:45:38 | -7,200 | 230835a418ead3262c9307f36da7a01dbe7b2b45 | fix fz compilation | [
{
"change_type": "MODIFY",
"old_path": "ortools/flatzinc/checker.cc",
"new_path": "ortools/flatzinc/checker.cc",
"diff": "@@ -398,7 +398,7 @@ std::vector<int64> ComputeGlobalCardinalityCards(\nstd::unordered_map<int64, int> positions;\nfor (int i = 0; i < ct.arguments[1].values.size(); ++i) {\nconst... | C++ | Apache License 2.0 | google/or-tools | fix fz compilation |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.