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,260 | 03.07.2017 17:45:58 | -19,080 | 0737f36cc4cddc1dea7cbab50c7eeebeba0125cc | Do not invoke setup.py build module via cmake but just build the src tarball for python, added manifest to ship additional swig include files | [
{
"change_type": "MODIFY",
"old_path": "cmake/python.cmake",
"new_path": "cmake/python.cmake",
"diff": "@@ -58,15 +58,19 @@ FILE(COPY\nDESTINATION\n${CMAKE_CURRENT_BINARY_DIR}/ortools/linear_solver/)\n+FILE(COPY\n+ ${CMAKE_CURRENT_SOURCE_DIR}/python/MANIFEST.in\n+ DESTINATION\n+ ${CMAKE_CURRENT_BINA... | C++ | Apache License 2.0 | google/or-tools | Do not invoke setup.py build module via cmake but just build the src tarball for python, added manifest to ship additional swig include files |
261,260 | 03.07.2017 18:17:44 | -19,080 | b11536c04f140b68efc483de392ec08b7afee2d2 | Hardcoded include paths for python setup.py for now | [
{
"change_type": "MODIFY",
"old_path": "cmake/python.cmake",
"new_path": "cmake/python.cmake",
"diff": "@@ -64,7 +64,6 @@ FILE(COPY\n${CMAKE_CURRENT_BINARY_DIR}/)\nSET(README_FILE README)\n-GET_PROPERTY(CMAKE_INCLUDE_DIRS DIRECTORY PROPERTY INCLUDE_DIRECTORIES)\nCONFIGURE_FILE(${CMAKE_CURRENT_SOURCE... | C++ | Apache License 2.0 | google/or-tools | Hardcoded include paths for python setup.py for now |
261,260 | 03.07.2017 19:00:29 | -19,080 | 85a8fc54ef51e4e7d8e885a6b5b503e55b670140 | Updated setup.py to expose py_modules generated by swig | [
{
"change_type": "MODIFY",
"old_path": "python/setup.py.in",
"new_path": "python/setup.py.in",
"diff": "+import os\nfrom setuptools import setup, find_packages, Extension\n+from distutils.command.build import build as _build\n+\n+class build(_build):\n+ sub_commands = [\n+ ('build_ext', _build.has_e... | C++ | Apache License 2.0 | google/or-tools | Updated setup.py to expose py_modules generated by swig |
261,230 | 03.07.2017 20:42:21 | -7,200 | def8283b43222a6d14df320a07126df8eeb05a50 | add init google logging to fz | [
{
"change_type": "MODIFY",
"old_path": "ortools/flatzinc/fz.cc",
"new_path": "ortools/flatzinc/fz.cc",
"diff": "@@ -307,6 +307,7 @@ int main(int argc, char** argv) {\n// Flatzinc specifications require single dash parameters (-a, -f, -p).\n// We need to fix parameters before parsing them.\noperation... | C++ | Apache License 2.0 | google/or-tools | add init google logging to fz |
261,230 | 03.07.2017 20:42:48 | -7,200 | 3c0f732dd41e6af4ac84b41170136d07c9a264b5 | fix bug on mac os X and AlphaNum(double) | [
{
"change_type": "MODIFY",
"old_path": "ortools/base/join.h",
"new_path": "ortools/base/join.h",
"diff": "@@ -32,7 +32,7 @@ char* NumToBuffer(T i, char* buffer) {\nstd::stringstream ss;\nss << i;\nconst std::string s = ss.str();\n- strcpy(buffer, s.c_str()); // NOLINT\n+ strncpy(buffer, s.c_str(), s... | C++ | Apache License 2.0 | google/or-tools | fix bug on mac os X and AlphaNum(double) |
261,230 | 03.07.2017 20:43:09 | -7,200 | 4146a68d1ea99eca106103ffbb6f120ef824492d | add fz output to sat cp_model backend | [
{
"change_type": "MODIFY",
"old_path": "ortools/flatzinc/cp_model_fz_solver.cc",
"new_path": "ortools/flatzinc/cp_model_fz_solver.cc",
"diff": "#include <unordered_map>\n#include \"ortools/base/timer.h\"\n+#include \"ortools/base/split.h\"\n#include \"ortools/base/stringpiece_utils.h\"\n#include \"o... | C++ | Apache License 2.0 | google/or-tools | add fz output to sat cp_model backend |
261,230 | 05.07.2017 06:25:55 | 25,200 | 6c5b1555281d7b3654eb084d98cb20650bb3ebca | better code in AlphaNum | [
{
"change_type": "MODIFY",
"old_path": "ortools/base/join.h",
"new_path": "ortools/base/join.h",
"diff": "const int kFastToBufferSize = 32;\n// Writes output to the beginning of the given buffer. Returns a pointer to the\n-// end of the std::string (i.e. to the NUL char). Buffer must be at least 12 ... | C++ | Apache License 2.0 | google/or-tools | better code in AlphaNum |
261,230 | 05.07.2017 06:26:07 | 25,200 | 8a4e50f006d948a9c0491df88ea3ea48b3b19dff | expose cplex in java wrapper | [
{
"change_type": "MODIFY",
"old_path": "ortools/linear_solver/java/linear_solver.i",
"new_path": "ortools/linear_solver/java/linear_solver.i",
"diff": "@@ -136,8 +136,8 @@ import java.lang.reflect.*;\n// These aren't unit tested, as they only run on machines with a Gurobi license.\n%unignore operati... | C++ | Apache License 2.0 | google/or-tools | expose cplex in java wrapper |
261,230 | 05.07.2017 16:25:39 | 25,200 | 40635ddb377d2aa5bc44471533eae466fc9d19a2 | safe version of sprintf and strcpy | [
{
"change_type": "MODIFY",
"old_path": "ortools/base/join.h",
"new_path": "ortools/base/join.h",
"diff": "const int kFastToBufferSize = 32;\n// Writes output to the beginning of the given buffer. Returns a pointer to the\n-// end of the std::string (i.e. to the NUL char). Buffer must be at least 12\... | C++ | Apache License 2.0 | google/or-tools | safe version of sprintf and strcpy |
261,230 | 05.07.2017 16:26:02 | 25,200 | d8c2cbb25701869466a8f39e7f23a03b790d6a08 | improved flatzinc output for sat fz solver | [
{
"change_type": "MODIFY",
"old_path": "ortools/flatzinc/cp_model_fz_solver.cc",
"new_path": "ortools/flatzinc/cp_model_fz_solver.cc",
"diff": "#include \"ortools/base/timer.h\"\n#include \"ortools/base/split.h\"\n#include \"ortools/base/stringpiece_utils.h\"\n+#include \"ortools/base/join.h\"\n#inc... | C++ | Apache License 2.0 | google/or-tools | improved flatzinc output for sat fz solver |
261,230 | 05.07.2017 16:26:19 | 25,200 | b4ba99a2b89b8b6841f19ed1eda727942b0bc316 | cleanup code in lp_data | [
{
"change_type": "MODIFY",
"old_path": "ortools/lp_data/sparse_vector.h",
"new_path": "ortools/lp_data/sparse_vector.h",
"diff": "@@ -595,18 +595,19 @@ void SparseVector<IndexType, IteratorType>::CleanUp() {\nentries.begin(), entries.end(),\n[](const std::pair<Index, Fractional>& a,\nconst std::pair... | C++ | Apache License 2.0 | google/or-tools | cleanup code in lp_data |
261,230 | 05.07.2017 16:26:34 | 25,200 | 01e8b59756569b30450f44b0f245256893c6f28f | improved python wrapping of functions | [
{
"change_type": "MODIFY",
"old_path": "ortools/util/functions_swig_test_helpers.h",
"new_path": "ortools/util/functions_swig_test_helpers.h",
"diff": "@@ -70,5 +70,17 @@ class FunctionSwigTestHelpers {\nfun(x);\n}\n};\n+\n+class DelayedFunctionSwigTestHelpers {\n+ public:\n+ DelayedFunctionSwigTest... | C++ | Apache License 2.0 | google/or-tools | improved python wrapping of functions |
261,230 | 05.07.2017 16:27:00 | 25,200 | 33314b18699f2e360aa6ab796c56feb67d508e5c | cleanup sat code after change to allow linear objective | [
{
"change_type": "MODIFY",
"old_path": "cmake/utils.cmake",
"new_path": "cmake/utils.cmake",
"diff": "@@ -33,6 +33,7 @@ FUNCTION(GET_VERSION_FROM_GIT OUTPUT_VAR VERSION_MAJOR_ VERSION_MINOR_ VERSION_P\nERROR_QUIET)\nSTRING(STRIP _VERSION_PATCH ${_VERSION_PATCH})\nSTRING(REGEX REPLACE \"\\n$\" \"\" _... | C++ | Apache License 2.0 | google/or-tools | cleanup sat code after change to allow linear objective |
261,230 | 05.07.2017 16:30:10 | 25,200 | dd0e9e200ce93c82085bcbe784f4e38d5305f8a0 | fix example after removal of code in sat | [
{
"change_type": "MODIFY",
"old_path": "examples/cpp/shift_minimization_sat.cc",
"new_path": "examples/cpp/shift_minimization_sat.cc",
"diff": "DEFINE_string(input, \"\", \"Input file.\");\nDEFINE_string(params, \"\", \"Sat parameters in text proto format.\");\n-DEFINE_bool(use_core, false, \"Use th... | C++ | Apache License 2.0 | google/or-tools | fix example after removal of code in sat |
261,230 | 06.07.2017 04:06:40 | 25,200 | 49c7e20c37deea85cb9bf94496a6d3e3252f4fbc | fix bug in glop found by the scip team | [
{
"change_type": "MODIFY",
"old_path": "ortools/glop/revised_simplex.cc",
"new_path": "ortools/glop/revised_simplex.cc",
"diff": "@@ -1107,10 +1107,10 @@ Status RevisedSimplex::Initialize(const LinearProgram& lp) {\n// TODO(user): If the basis is incomplete, we could complete it with\n// better slac... | C++ | Apache License 2.0 | google/or-tools | fix bug in glop found by the scip team |
261,230 | 06.07.2017 04:56:28 | 25,200 | 7b357a2263f921e55a68c993530e3954fd78201e | regroup all reversible integer value in a single repository | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/integer.cc",
"new_path": "ortools/sat/integer.cc",
"diff": "@@ -331,17 +331,20 @@ LiteralIndex IntegerEncoder::SearchForLiteralAtOrBefore(\n}\nbool IntegerTrail::Propagate(Trail* trail) {\n+ const int level = trail->CurrentDecisionLevel();\n+ for (... | C++ | Apache License 2.0 | google/or-tools | regroup all reversible integer value in a single repository |
261,230 | 06.07.2017 04:57:49 | 25,200 | c1fa241347d1b61d5ce7e0bbbab90a6596a2c1e7 | wake up simplex in sat on objective change | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/linear_programming_constraint.cc",
"new_path": "ortools/sat/linear_programming_constraint.cc",
"diff": "@@ -143,6 +143,9 @@ void LinearProgrammingConstraint::RegisterWith(GenericLiteralWatcher* watcher) {\nfor (int i = 0; i < num_vars; i++) {\nwatc... | C++ | Apache License 2.0 | google/or-tools | wake up simplex in sat on objective change |
261,230 | 07.07.2017 11:12:11 | 25,200 | d8f3b2adb0f42cc6fc335137c2938a8f0757966d | cleanup of flatzinc code | [
{
"change_type": "MODIFY",
"old_path": "ortools/flatzinc/fz.cc",
"new_path": "ortools/flatzinc/fz.cc",
"diff": "@@ -215,7 +215,7 @@ void FixAndParseParameters(int* argc, char*** argv) {\ngflags::SetUsageMessage(kUsage);\ngflags::ParseCommandLineFlags(argc, argv, true);\n- google::InitGoogleLogging(a... | C++ | Apache License 2.0 | google/or-tools | cleanup of flatzinc code |
261,230 | 07.07.2017 11:13:20 | 25,200 | 1ce88caaac9c29872706ec359f46ce19ff5c3439 | improve python wrapping of functions | [
{
"change_type": "MODIFY",
"old_path": "ortools/util/python/functions.i",
"new_path": "ortools/util/python/functions.i",
"diff": "%{\n#include <functional>\n-// Wrap std::function<std::string()>\n+// A copyable, ref-counted python pointer.\n+// TODO(user): Make it movable-only when we support genera... | C++ | Apache License 2.0 | google/or-tools | improve python wrapping of functions |
261,230 | 07.07.2017 11:13:35 | 25,200 | e71d5036574eb35e023db97403ffe1669fd83588 | speed up sat | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model_solver.cc",
"new_path": "ortools/sat/cp_model_solver.cc",
"diff": "@@ -1507,8 +1507,16 @@ void FillSolutionInResponse(const CpModelProto& model_proto,\nnamespace {\n-IntegerVariable CreateVariableWithTightBound(\n+IntegerVariable GetOrCrea... | C++ | Apache License 2.0 | google/or-tools | speed up sat |
261,230 | 07.07.2017 11:14:08 | 25,200 | e0a907fa7bbfe61081c82d61a9d03cf017bfffba | export index() method on MPVariable to java | [
{
"change_type": "MODIFY",
"old_path": "ortools/linear_solver/java/linear_solver.i",
"new_path": "ortools/linear_solver/java/linear_solver.i",
"diff": "@@ -209,6 +209,7 @@ import java.lang.reflect.*;\n%rename (name) operations_research::MPVariable::name; // no test\n%rename (basisStatus) operations_... | C++ | Apache License 2.0 | google/or-tools | export index() method on MPVariable to java |
261,230 | 10.07.2017 11:10:04 | 25,200 | 8f3327a27cce38129e7972d66fa36e73ce375318 | add getters API to glop | [
{
"change_type": "MODIFY",
"old_path": "ortools/glop/revised_simplex.h",
"new_path": "ortools/glop/revised_simplex.h",
"diff": "@@ -806,10 +806,11 @@ class RevisedSimplexDictionary {\nConstIterator begin() const { return dictionary_.begin(); }\nConstIterator end() const { return dictionary_.end(); }... | C++ | Apache License 2.0 | google/or-tools | add getters API to glop |
261,230 | 10.07.2017 11:12:05 | 25,200 | c2e1e16ac07a2056ae045a04c8ee45cd9d5ab7a5 | add solution observer on cp_model_solver | [
{
"change_type": "MODIFY",
"old_path": "ortools/linear_solver/linear_solver.proto",
"new_path": "ortools/linear_solver/linear_solver.proto",
"diff": "@@ -263,6 +263,7 @@ message MPModelRequest {\n// rejected and yield an RPC Application error with code\n// MPSOLVER_MODEL_INVALID_SOLVER_PARAMETERS.\n... | C++ | Apache License 2.0 | google/or-tools | add solution observer on cp_model_solver |
261,230 | 10.07.2017 16:56:58 | 25,200 | f5f02b8895198d58e5cdc416b642088a96c17d3c | support -a of sat fz solver | [
{
"change_type": "MODIFY",
"old_path": "ortools/flatzinc/cp_model_fz_solver.cc",
"new_path": "ortools/flatzinc/cp_model_fz_solver.cc",
"diff": "@@ -851,6 +851,20 @@ void SolveFzWithCpModelProto(const fz::Model& fz_model,\n} else if (p.logging) {\nLogInFlatzincFormat(CpModelStats(m.proto));\n}\n+\n+ ... | C++ | Apache License 2.0 | google/or-tools | support -a of sat fz solver |
261,230 | 11.07.2017 11:26:14 | 25,200 | c22270e64094da1b2111ee701f87b9734f472f2a | fix -a option on flatzinc solver; add sat parameters to enumerate all solutions | [
{
"change_type": "MODIFY",
"old_path": "ortools/flatzinc/cp_model_fz_solver.cc",
"new_path": "ortools/flatzinc/cp_model_fz_solver.cc",
"diff": "@@ -834,6 +834,10 @@ void SolveFzWithCpModelProto(const fz::Model& fz_model,\n&flag_parameters))\n<< FLAGS_cp_sat_params;\nm.parameters.MergeFrom(flag_param... | C++ | Apache License 2.0 | google/or-tools | fix -a option on flatzinc solver; add sat parameters to enumerate all solutions |
261,230 | 12.07.2017 11:38:46 | 25,200 | 683871ede2e99df10d2090e1df007803df13d994 | improve SAT/LP connection | [
{
"change_type": "MODIFY",
"old_path": "ortools/glop/revised_simplex.cc",
"new_path": "ortools/glop/revised_simplex.cc",
"diff": "@@ -231,6 +231,7 @@ Status RevisedSimplex::Solve(const LinearProgram& lp, TimeLimit* time_limit) {\n// *equal* to the corresponding limits (to return a meaningful status\... | C++ | Apache License 2.0 | google/or-tools | improve SAT/LP connection |
261,230 | 12.07.2017 14:56:59 | 25,200 | 60bb0a790935622eed23e9dd71b117dd4d09305e | continue working on docker support for linux; add pypi_export target | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.python.mk",
"new_path": "makefiles/Makefile.python.mk",
"diff": "@@ -308,7 +308,7 @@ ifeq ($(PLATFORM),LINUX)\nendif\nendif\n-pypi_upload:\n+pypi_upload: pypi_archive\n@echo Uploading Pypi module for $(PYTHON_EXECUTABLE).\nifeq ($(SYSTEM),wi... | C++ | Apache License 2.0 | google/or-tools | continue working on docker support for linux; add pypi_export target |
261,230 | 12.07.2017 15:04:04 | 25,200 | 3c445063ac0f00a9c4e030ec00b052110a94d9a2 | readd missing dependency on patchelf | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.python.mk",
"new_path": "makefiles/Makefile.python.mk",
"diff": "@@ -247,7 +247,7 @@ OR_TOOLS_PYTHON_GEN_SCRIPTS = $(wildcard src/gen/ortools/*/*.py) $(wildcard src/\npypi_archive: python $(PYPI_ARCHIVE_TEMP_DIR)\n-$(PYPI_ARCHIVE_TEMP_DIR) :... | C++ | Apache License 2.0 | google/or-tools | readd missing dependency on patchelf |
261,230 | 12.07.2017 16:04:46 | 25,200 | df2607afbc34b04f559c098d8dee8158ece04e75 | improve docker support with python3 builds | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/Makefile",
"new_path": "tools/docker/Makefile",
"diff": "+# General commandes\n+\nexport:\nmkdir export\n@@ -11,12 +13,16 @@ clean_all_images:\nclean_all_containers:\ndocker rm `docker ps -a -q`\n+# Ubuntu 14.04 images\n+\nubuntu-14.04-image:\ndoc... | C++ | Apache License 2.0 | google/or-tools | improve docker support with python3 builds |
261,230 | 12.07.2017 16:14:53 | 25,200 | dcce2a63bc953287de82dd02f447924b82c00a56 | improve makefile for docker | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/Makefile",
"new_path": "tools/docker/Makefile",
"diff": "@@ -13,6 +13,8 @@ clean_all_images:\nclean_all_containers:\ndocker rm `docker ps -a -q`\n+delivery: ubuntu-16.04-archive ubuntu-16.04-pypi ubuntu-16.04-pypi3\n+\n# Ubuntu 14.04 images\nubunt... | C++ | Apache License 2.0 | google/or-tools | improve makefile for docker |
261,230 | 12.07.2017 17:55:56 | 25,200 | b51faa5484a9bb1cb102b82b3a976f64a31f4ead | expand list of delivered artifacts in docker | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/Makefile",
"new_path": "tools/docker/Makefile",
"diff": "@@ -13,7 +13,14 @@ clean_all_images:\nclean_all_containers:\ndocker rm `docker ps -a -q`\n-delivery: ubuntu-16.04-archive ubuntu-16.04-pypi ubuntu-16.04-pypi3\n+delivery: \\\n+ ubuntu-14.04-... | C++ | Apache License 2.0 | google/or-tools | expand list of delivered artifacts in docker |
261,230 | 13.07.2017 10:56:11 | 25,200 | 1f09e8d410f5046c073e3c9184ca0016f00e8762 | more work on docker | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/Makefile",
"new_path": "tools/docker/Makefile",
"diff": "-# General commandes\n+# General commands\nexport:\nmkdir export\n-images: ubuntu-16.04-image ubuntu-17.04-image\n+images: ubuntu-14.04-image ubuntu-16.04-image ubuntu-17.04-image\n-images-n... | C++ | Apache License 2.0 | google/or-tools | more work on docker |
261,230 | 13.07.2017 18:20:54 | 25,200 | 2ee107e74d10da39f192c722901657f567089778 | initial support for centos | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.unix.mk",
"new_path": "makefiles/Makefile.unix.mk",
"diff": "@@ -145,7 +145,11 @@ ifeq ($(PLATFORM),LINUX)\n# This is needed to find libz.a\nZLIB_LNK = -lz\n# This is needed to find libprotobuf.a\n+ ifeq ($(DISTRIBUTION_ID),CentOS)\n+ PROTOB... | C++ | Apache License 2.0 | google/or-tools | initial support for centos |
261,230 | 13.07.2017 21:20:46 | 25,200 | 371c7ead8a71ec1f33b67d3cb563eaaba247f30d | more work on centos support | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.port",
"new_path": "makefiles/Makefile.port",
"diff": "@@ -29,6 +29,8 @@ ifeq (\"$(SYSTEM)\",\"unix\")\nCANDIDATE_JDK_ROOTS = \\\n/usr/local/buildtools/java/jdk-64 \\\n/usr/lib/jvm/java-1.7.0-openjdk.x86_64 \\\n+ /usr/lib/jvm/java-1.8.0-open... | C++ | Apache License 2.0 | google/or-tools | more work on centos support |
261,230 | 13.07.2017 22:08:31 | 25,200 | 64b335aa2b9b7a6e9e026231acdba765d3e0496d | polish centos docker python support | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/Makefile",
"new_path": "tools/docker/Makefile",
"diff": "@@ -93,8 +93,5 @@ centos-7-archive: export centos-7-image\ncentos-7-pypi: export centos-7-image\ndocker run -w /root/or-tools -v `pwd`/export:/export or-tools-centos-7-image:latest /bin/bash... | C++ | Apache License 2.0 | google/or-tools | polish centos docker python support |
261,230 | 14.07.2017 11:04:13 | 25,200 | b308bb802c555e9160d9eee551f463d27526a04b | support debian 9 in docker | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/Makefile",
"new_path": "tools/docker/Makefile",
"diff": "@@ -79,6 +79,23 @@ ubuntu-17.04-pypi: export ubuntu-17.04-image\nubuntu-17.04-pypi3: export ubuntu-17.04-image\ndocker run -w /root/or-tools -v `pwd`/export:/export or-tools-ubuntu-17.04-ima... | C++ | Apache License 2.0 | google/or-tools | support debian 9 in docker |
261,230 | 14.07.2017 12:14:36 | 25,200 | b5b7b08ffc4b3003ddbf09db26fd7ea9487c5865 | custom target for docker | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/Makefile",
"new_path": "tools/docker/Makefile",
"diff": "@@ -16,6 +16,13 @@ clean_all_images:\nclean_all_containers:\ndocker rm `docker ps -a -q`\n+archives: \\\n+ centos-7-archive \\\n+ debian-9-archive \\\n+ ubuntu-14.04-archive \\\n+ ubuntu-16.... | C++ | Apache License 2.0 | google/or-tools | custom target for docker |
261,230 | 17.07.2017 20:45:37 | 25,200 | 948796569f015ba6c57d97dd54411ddcbe2e6c2e | fix fzn errors | [
{
"change_type": "MODIFY",
"old_path": "ortools/flatzinc/cp_model_fz_solver.cc",
"new_path": "ortools/flatzinc/cp_model_fz_solver.cc",
"diff": "@@ -709,7 +709,7 @@ std::string SolutionString(\nfor (int i = 0; i < bound_size; ++i) {\nif (output.bounds[i].max_value != 0) {\nStrAppend(&result, output.b... | C++ | Apache License 2.0 | google/or-tools | fix fzn errors |
261,230 | 18.07.2017 13:07:42 | 25,200 | fa82950d289ec6321dcc4fba167a9eea6acda50e | fix crash in default search | [
{
"change_type": "MODIFY",
"old_path": "ortools/constraint_solver/default_search.cc",
"new_path": "ortools/constraint_solver/default_search.cc",
"diff": "@@ -398,7 +398,8 @@ class ImpactRecorder : public SearchMonitor {\nreturn;\n}\nd->Accept(&find_var_);\n- if (find_var_.operation() == FindVar::ASS... | C++ | Apache License 2.0 | google/or-tools | fix crash in default search |
261,230 | 19.07.2017 07:47:51 | 25,200 | bdc2eb6daaf7caec76ffdb5709a5dc665dbb7504 | fix presolve on element | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model_presolve.cc",
"new_path": "ortools/sat/cp_model_presolve.cc",
"diff": "@@ -1011,13 +1011,26 @@ bool PresolveElement(ConstraintProto* ct, PresolveContext* context) {\nbool all_included_in_target_domain = true;\nbool reduced_index_domain = f... | C++ | Apache License 2.0 | google/or-tools | fix presolve on element |
261,230 | 19.07.2017 07:58:44 | 25,200 | a1a1d66bd6fc8675d7e77c863709bed5f5d3b430 | generate fz archive in docker | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/Makefile",
"new_path": "tools/docker/Makefile",
"diff": "@@ -47,7 +47,7 @@ ubuntu-14.04-image-no-cache:\ndocker build --no-cache -f ubuntu-14.04.Dockerfile -t or-tools-ubuntu-14.04-image .\nubuntu-14.04-archive: export ubuntu-14.04-image\n- docker... | C++ | Apache License 2.0 | google/or-tools | generate fz archive in docker |
261,230 | 19.07.2017 08:29:15 | 25,200 | 442a468b6d942bfce8073377eb89b36f18e5b8f2 | enable -f distinction on cp_fz_sat | [
{
"change_type": "MODIFY",
"old_path": "ortools/flatzinc/cp_model_fz_solver.cc",
"new_path": "ortools/flatzinc/cp_model_fz_solver.cc",
"diff": "@@ -838,6 +838,7 @@ void SolveFzWithCpModelProto(const fz::Model& fz_model,\n// Enumerate all sat solutions.\nm.parameters.set_enumerate_all_solutions(true)... | C++ | Apache License 2.0 | google/or-tools | enable -f distinction on cp_fz_sat |
261,230 | 19.07.2017 16:30:15 | 25,200 | 6dfe2a21ab3a4cd01a8ee74e5912499c07fa0fa1 | a bit more presolve of flatzinc fz | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model.proto",
"new_path": "ortools/sat/cp_model.proto",
"diff": "@@ -92,7 +92,7 @@ message ElementConstraintProto {\n}\n// This \"special\" constraint not only enforces (start + size == end) but can\n-// also be refered by other constraints usin... | C++ | Apache License 2.0 | google/or-tools | a bit more presolve of flatzinc fz |
261,230 | 20.07.2017 11:30:17 | 25,200 | 0501a62221d25f338fa29ef99c94b863543f1f2a | add sat clause simplifications to cp_model solver | [
{
"change_type": "MODIFY",
"old_path": "examples/cpp/sat_runner.cc",
"new_path": "examples/cpp/sat_runner.cc",
"diff": "@@ -110,7 +110,7 @@ DEFINE_bool(probing, false, \"If true, presolve the problem using probing.\");\nDEFINE_bool(use_cp_model, true,\n- \"Whether to interpret a linear program input... | C++ | Apache License 2.0 | google/or-tools | add sat clause simplifications to cp_model solver |
261,230 | 20.07.2017 11:35:38 | 25,200 | 51d7f77c7c6ef2d5272756881674445a36ba51a5 | fix compilation of solve.cc | [
{
"change_type": "MODIFY",
"old_path": "examples/cpp/solve.cc",
"new_path": "examples/cpp/solve.cc",
"diff": "@@ -128,10 +128,6 @@ void Run() {\n#if defined(USE_BOP)\n} else if (FLAGS_solver == \"bop\") {\ntype = MPSolver::BOP_INTEGER_PROGRAMMING;\n-#endif\n-#if defined(USE_GLOP)\n- } else if (FLAGS... | C++ | Apache License 2.0 | google/or-tools | fix compilation of solve.cc |
261,230 | 20.07.2017 18:07:10 | 25,200 | f97b36ea51d510f4a7377edb5bbca1a1c93ea539 | small improvement on make install | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.install.mk",
"new_path": "makefiles/Makefile.install.mk",
"diff": "@@ -12,14 +12,15 @@ endif\nendif\ncreate_install_dirs:\n- $(MKDIR) $(TARGET_DIR)\n- $(MKDIR) $(TARGET_DIR)$Slib\n- $(MKDIR) $(TARGET_DIR)$Sobjs\n- $(MKDIR) $(TARGET_DIR)$Sbin... | C++ | Apache License 2.0 | google/or-tools | small improvement on make install |
261,230 | 21.07.2017 10:32:45 | 25,200 | e171c75423768c4e84713c44b84927a3376614ea | remove -m64 from Mac GUROBI_LNK | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.unix.mk",
"new_path": "makefiles/Makefile.unix.mk",
"diff": "@@ -247,7 +247,7 @@ ifeq ($(PLATFORM),MACOSX)\nSCIP_LNK = -force_load $(UNIX_SCIP_DIR)/lib/static/libscip.$(SCIP_ARCH).a $(UNIX_SCIP_DIR)/lib/static/libnlpi.cppad.$(SCIP_ARCH).a -f... | C++ | Apache License 2.0 | google/or-tools | remove -m64 from Mac GUROBI_LNK |
261,230 | 21.07.2017 11:05:21 | 25,200 | f9e5e98a610433ac2cfea9961af2bc3ee2dd414f | simple script to build delivery on mac | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "tools/build_delivery_mac.sh",
"diff": "+#!/bin/bash\n+\n+echo Cleaning or-tools\n+make clean\n+echo Builing all libraries\n+make all fz -j 5\n+echo Running tests\n+make test\n+echo Creating standard artifacts.\n+make python_examples_archive arch... | C++ | Apache License 2.0 | google/or-tools | simple script to build delivery on mac |
261,230 | 21.07.2017 11:13:10 | 25,200 | c91cba70c9d9ca3f2c40f6d626418786158dfe9c | simplify sat internals; add propagator for x*x in sat | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/integer.h",
"new_path": "ortools/sat/integer.h",
"diff": "@@ -966,10 +966,8 @@ class LiteralViews {\nif (!ContainsKey(literal_index_to_integer_, index)) {\nconst IntegerVariable int_var = model_->Add(NewIntegerVariable(0, 1));\n- model_->GetOrCreat... | C++ | Apache License 2.0 | google/or-tools | simplify sat internals; add propagator for x*x in sat |
261,230 | 21.07.2017 14:00:29 | 25,200 | bceef8ba50224d1a798ed6518a44eca3b05b2927 | simplify make install; rename to make install_cc | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.install.mk",
"new_path": "makefiles/Makefile.install.mk",
"diff": "-install: cc_install $(PATCHELF)\n-ifeq ($(PLATFORM),LINUX)\n- dependencies/install/bin/patchelf --set-rpath '$ORIGIN' $(TARGET_DIR)/lib/libcvrptw_lib.so\n- dependencies/inst... | C++ | Apache License 2.0 | google/or-tools | simplify make install; rename to make install_cc |
261,230 | 24.07.2017 10:31:38 | 25,200 | 0a55d745e8f7439963bb4ed3e2741fbeb38df68d | add test target to linux docker | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/Makefile",
"new_path": "tools/docker/Makefile",
"diff": "@@ -36,6 +36,13 @@ pypi3: \\\nubuntu-16.04-pypi3 \\\nubuntu-17.04-pypi3\n+test: \\\n+ centos-7-test \\\n+ debian-9-test \\\n+ ubuntu-14.04-test \\\n+ ubuntu-16.04-test \\\n+ ubuntu-17.04-tes... | C++ | Apache License 2.0 | google/or-tools | add test target to linux docker |
261,230 | 24.07.2017 10:31:53 | 25,200 | c6f128db1715441f4cbd4d852a4296a607868a09 | simplify sat internals | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.python.mk",
"new_path": "makefiles/Makefile.python.mk",
"diff": "@@ -53,6 +53,7 @@ clean_python:\n-$(DEL) $(GEN_DIR)$Slinear_solver$S*.pyc\n-$(DEL) $(LIB_DIR)$S_pywrap*.$(SWIG_LIB_SUFFIX)\n-$(DEL) $(OBJ_DIR)$Sswig$S*python_wrap.$O\n+ -$(DELR... | C++ | Apache License 2.0 | google/or-tools | simplify sat internals |
261,230 | 24.07.2017 11:41:21 | 25,200 | ad45ee15959f9cab6362d02723c04a4c0e258819 | fix __version__ on windows python modules | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.python.mk",
"new_path": "makefiles/Makefile.python.mk",
"diff": "@@ -265,7 +265,11 @@ $(PYPI_ARCHIVE_TEMP_DIR) : $(OR_TOOLS_PYTHON_GEN_SCRIPTS) $(PATCHELF)\n$(COPY) ortools$Sgen$Sortools$Sgraph$Spywrapgraph.py $(PYPI_ARCHIVE_TEMP_DIR)$Sortoo... | C++ | Apache License 2.0 | google/or-tools | fix __version__ on windows python modules |
261,230 | 26.07.2017 15:23:29 | 25,200 | 7d65b79f95dd8061a97af2d1602abb2983bbc4e2 | shuffle code around to prepare sat API to be proto only/prefered | [
{
"change_type": "MODIFY",
"old_path": "examples/cpp/BUILD",
"new_path": "examples/cpp/BUILD",
"diff": "@@ -293,6 +293,7 @@ cc_binary(\n\"//ortools/base:file\",\n\"//ortools/base:strings\",\n\"//ortools/base:timer\",\n+ \"//ortools/sat:cp_model_solver\",\n\"//ortools/sat:disjunctive\",\n\"//ortools/... | C++ | Apache License 2.0 | google/or-tools | shuffle code around to prepare sat API to be proto only/prefered |
261,230 | 27.07.2017 20:33:57 | -7,200 | bca80ba98f21fe2e884372c5aa6829a9a59dc107 | fix standalone compilation of base/macris.h | [
{
"change_type": "MODIFY",
"old_path": "ortools/base/macros.h",
"new_path": "ortools/base/macros.h",
"diff": "#ifndef OR_TOOLS_BASE_MACROS_H_\n#define OR_TOOLS_BASE_MACROS_H_\n+#include <cstdlib>\n+\n#if (defined(COMPILER_GCC3) || defined(OS_MACOSX)) && !defined(SWIG)\n#define ATTRIBUTE_UNUSED __att... | C++ | Apache License 2.0 | google/or-tools | fix standalone compilation of base/macris.h |
261,230 | 27.07.2017 13:50:06 | 25,200 | 1c5368e2b001033e952ec9259fe0570fe4cdb995 | regen depdendencies | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.gen.mk",
"new_path": "makefiles/Makefile.gen.mk",
"diff": "@@ -1408,7 +1408,6 @@ $(OBJ_DIR)/algorithms/sparse_permutation.$O: \\\n$(CCC) $(CFLAGS) -c $(SRC_DIR)$Sortools$Salgorithms$Ssparse_permutation.cc $(OBJ_OUT)$(OBJ_DIR)$Salgorithms$Ssp... | C++ | Apache License 2.0 | google/or-tools | regen depdendencies |
261,230 | 28.07.2017 11:34:52 | 25,200 | e794336c359412d1d81f68e5ebb459b689faf696 | polish scip integration on unix | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.unix.mk",
"new_path": "makefiles/Makefile.third_party.unix.mk",
"diff": "@@ -280,7 +280,10 @@ Makefile.local: makefiles/Makefile.third_party.unix.mk\n@echo \"# Define UNIX_GLPK_DIR to point to a compiled version of GLPK to use it... | C++ | Apache License 2.0 | google/or-tools | polish scip integration on unix |
261,230 | 28.07.2017 19:15:28 | 0 | 6375e77f21585f27af5675628c7743ebafb01050 | fix windows and scip | [
{
"change_type": "MODIFY",
"old_path": "ortools/linear_solver/scip_interface.cc",
"new_path": "ortools/linear_solver/scip_interface.cc",
"diff": "@@ -666,7 +666,7 @@ std::string SCIPInterface::ValidFileExtensionForParameterFile() const {\nreturn \".set\";\n}\n-MPSolverInterface* BuildSCIPInterface(M... | C++ | Apache License 2.0 | google/or-tools | fix windows and scip |
261,230 | 28.07.2017 12:27:17 | 25,200 | 60f09a036e309cfa2c1d0d143d9e84e344757f9a | add instruction for windows and scip | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.win.mk",
"new_path": "makefiles/Makefile.third_party.win.mk",
"diff": "@@ -361,6 +361,7 @@ Makefile.local: makefiles/Makefile.third_party.$(SYSTEM).mk\n@echo # >> Makefile.local\n@echo # Define WINDOWS_SCIP_DIR to point to a comp... | C++ | Apache License 2.0 | google/or-tools | add instruction for windows and scip |
261,230 | 28.07.2017 13:26:39 | 25,200 | 6d9f2cf69b3f9d148fb01e51f0c8251c4511c28b | bump cbc to 2.9.9 | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.unix.mk",
"new_path": "makefiles/Makefile.third_party.unix.mk",
"diff": "GFLAGS_TAG = 2.2.0\nPROTOBUF_TAG = 3.3.0\nGLOG_TAG = 0.3.5\n-CBC_TAG = 2.9.8\n+CBC_TAG = 2.9.9\n# Detect if patchelf is needed\nifeq ($(PLATFORM), LINUX)\n"... | C++ | Apache License 2.0 | google/or-tools | bump cbc to 2.9.9 |
261,230 | 28.07.2017 20:36:39 | 0 | 356dbd77e4c52b1a7fbb9562be8e1669b0bee86e | improve scip instructions on windows | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.win.mk",
"new_path": "makefiles/Makefile.third_party.win.mk",
"diff": "@@ -361,7 +361,8 @@ Makefile.local: makefiles/Makefile.third_party.$(SYSTEM).mk\n@echo # >> Makefile.local\n@echo # Define WINDOWS_SCIP_DIR to point to a comp... | C++ | Apache License 2.0 | google/or-tools | improve scip instructions on windows |
261,230 | 28.07.2017 14:08:36 | 25,200 | 9c5f3cffba703fd72d1ae6c75d0d8f10ee341d24 | misc on docker | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/Makefile",
"new_path": "tools/docker/Makefile",
"diff": "export:\nmkdir export\n-images: ubuntu-14.04-image ubuntu-16.04-image ubuntu-17.04-image\n+images: \\\n+ ubuntu-14.04-image \\\n+ ubuntu-16.04-image \\\n+ ubuntu-17.04-image \\\n+ centos-7-i... | C++ | Apache License 2.0 | google/or-tools | misc on docker |
261,230 | 28.07.2017 21:32:26 | 0 | d5ee8fd060cdd1a0e390df49415ce13a8f92721e | add script to build delivery on win | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "tools/build_delivery_win.cmd",
"diff": "+echo Cleaning or-tools\n+tools\\make.exe clean\n+echo Builing all libraries\n+tools\\make.exe all fz\n+echo Running tests\n+tools\\make.exe test\n+echo Creating standard artifacts.\n+tools\\make.exe pytho... | C++ | Apache License 2.0 | google/or-tools | add script to build delivery on win |
261,230 | 31.07.2017 09:30:39 | 25,200 | 0deaf865feb2f0af5e131e3148eba139017d9d36 | fix generation of Makefile.local | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.third_party.unix.mk",
"new_path": "makefiles/Makefile.third_party.unix.mk",
"diff": "@@ -280,9 +280,9 @@ Makefile.local: makefiles/Makefile.third_party.unix.mk\n@echo \"# Define UNIX_GLPK_DIR to point to a compiled version of GLPK to use it\... | C++ | Apache License 2.0 | google/or-tools | fix generation of Makefile.local |
261,230 | 31.07.2017 09:36:36 | 25,200 | a4ea8218da2cbe7e95a3e987b716c0ef292efc48 | rename Makefile.test to Makefile.test.mk | [
{
"change_type": "MODIFY",
"old_path": "Makefile",
"new_path": "Makefile",
"diff": "@@ -58,7 +58,7 @@ include $(OR_ROOT)makefiles/Makefile.archive.mk\ninclude $(OR_ROOT)makefiles/Makefile.install.mk\n# Include test\n-include $(OR_ROOT)makefiles/Makefile.test\n+include $(OR_ROOT)makefiles/Makefile.te... | C++ | Apache License 2.0 | google/or-tools | rename Makefile.test to Makefile.test.mk |
261,230 | 31.07.2017 09:45:30 | 25,200 | 739fa47e0fb4367f5df0754d191e0a3f641ba176 | rename Makefile.port to Makefile.port.mk | [
{
"change_type": "MODIFY",
"old_path": "Makefile",
"new_path": "Makefile",
"diff": "@@ -36,7 +36,7 @@ clean: clean_cc clean_java clean_python clean_csharp clean_compat\ninclude $(OR_ROOT)Version.txt\n# We try to detect the platform.\n-include $(OR_ROOT)makefiles/Makefile.port\n+include $(OR_ROOT)mak... | C++ | Apache License 2.0 | google/or-tools | rename Makefile.port to Makefile.port.mk |
261,230 | 31.07.2017 12:06:19 | 25,200 | 12b5ac178e84043750a1d4b8f769da0bd9e86356 | fix docker targets | [
{
"change_type": "MODIFY",
"old_path": "tools/build_delivery_mac.sh",
"new_path": "tools/build_delivery_mac.sh",
"diff": "echo Cleaning or-tools\nmake clean\necho Builing all libraries\n-make all fz -j 5\n+make all fz -j 5 UNIX_PYTHON_VER=2.7\necho Running tests\n-make test\n+make test UNIX_PYTHON_V... | C++ | Apache License 2.0 | google/or-tools | fix docker targets |
261,230 | 01.08.2017 10:05:37 | 25,200 | 8582d92d3673ded06cfb70f0da88c396f5c918b4 | remove ARCH_K8 from makefiles, detect 64 bit inside the code | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.port.mk",
"new_path": "makefiles/Makefile.port.mk",
"diff": "@@ -96,7 +96,6 @@ ifeq (\"$(SYSTEM)\",\"win\")\nPLATFORM = WIN64\nPTRLENGTH = 64\nCMAKE_SUFFIX = Win64\n- ARCH= /DARCH_K8\nCBC_PLATFORM_PREFIX = x64\nGLPK_PLATFORM = w64\nNETPLATFO... | C++ | Apache License 2.0 | google/or-tools | remove ARCH_K8 from makefiles, detect 64 bit inside the code |
261,230 | 01.08.2017 15:02:15 | 25,200 | 2a64d85317642e7daefb46c2a956539ae81771c4 | increase max arity of StrCat | [
{
"change_type": "MODIFY",
"old_path": "ortools/base/join.cc",
"new_path": "ortools/base/join.cc",
"diff": "@@ -85,6 +85,23 @@ void StrAppend(std::string* s, const AlphaNum& a, const AlphaNum& b,\nStrAppend(s, a, b, c, d);\nStrAppend(s, e, f, g, h, i, j, k);\n}\n+void StrAppend(std::string* s, const... | C++ | Apache License 2.0 | google/or-tools | increase max arity of StrCat |
261,230 | 02.08.2017 09:52:30 | 25,200 | 2fb2c6cd1b4e1fdd6db089606cbea3bc2b6df3f4 | fix cplex compilation, at least on mac | [
{
"change_type": "MODIFY",
"old_path": "ortools/linear_solver/cplex_interface.cc",
"new_path": "ortools/linear_solver/cplex_interface.cc",
"diff": "@@ -229,12 +229,12 @@ namespace operations_research {\nmEnv = CPXXopenCPLEX(&status);\nCHECK_STATUS(status);\n- DCHECK_NE(0, mEnv); // should not be NUL... | C++ | Apache License 2.0 | google/or-tools | fix cplex compilation, at least on mac |
261,230 | 02.08.2017 10:41:27 | 25,200 | 12234acc0221511c9fda7c84a2f0594cbdb91398 | minor sync with internal code | [
{
"change_type": "MODIFY",
"old_path": "ortools/base/join.cc",
"new_path": "ortools/base/join.cc",
"diff": "@@ -85,6 +85,7 @@ void StrAppend(std::string* s, const AlphaNum& a, const AlphaNum& b,\nStrAppend(s, a, b, c, d);\nStrAppend(s, e, f, g, h, i, j, k);\n}\n+\nvoid StrAppend(std::string* s, cons... | C++ | Apache License 2.0 | google/or-tools | minor sync with internal code |
261,230 | 02.08.2017 14:17:58 | 25,200 | 8ee9920b3a892aa9d8f865fe994aec435fdf9901 | add newly created port directory to archive include directories | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.archive.mk",
"new_path": "makefiles/Makefile.archive.mk",
"diff": "@@ -36,6 +36,7 @@ create_dirs:\n$(MKDIR) temp$S$(INSTALL_DIR)$Sinclude$Sortools$Sgraph\n$(MKDIR) temp$S$(INSTALL_DIR)$Sinclude$Sortools$Slinear_solver\n$(MKDIR) temp$S$(INSTA... | C++ | Apache License 2.0 | google/or-tools | add newly created port directory to archive include directories |
261,230 | 02.08.2017 14:22:23 | 25,200 | bada79303deab36b6b342fc88dfc1ac1b88279b7 | clean objs/port/ | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.cpp.mk",
"new_path": "makefiles/Makefile.cpp.mk",
"diff": "@@ -23,6 +23,7 @@ clean_cc:\n-$(DEL) $(OBJ_DIR)$Sglop$S*.$O\n-$(DEL) $(OBJ_DIR)$Slp_data$S*.$O\n-$(DEL) $(OBJ_DIR)$Sgraph$S*.$O\n+ -$(DEL) $(OBJ_DIR)$Sport$S*.$O\n-$(DEL) $(OBJ_DIR)$... | C++ | Apache License 2.0 | google/or-tools | clean objs/port/ |
261,230 | 02.08.2017 14:35:12 | 25,200 | 21a1d1172161c9dd6b80bed5284db7494f97e43d | fix bazel support after creation of ortools/port directory | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "ortools/port/BUILD",
"diff": "+package(default_visibility = [\"//visibility:public\"])\n+\n+cc_library(\n+ name = \"utf8\",\n+ hdrs = [\"utf8.h\"],\n+ deps = [\n+ \"//ortools/base\",\n+ \"//ortools/base:encodingutils\",\n+ ],\n+)\n+\n+cc_library... | C++ | Apache License 2.0 | google/or-tools | fix bazel support after creation of ortools/port directory |
261,230 | 03.08.2017 10:20:59 | 25,200 | e42ef1e06e3a0600fcecc074cdf69aad4760eb49 | cleanups and minor syncs; sat: add LP guided heuristics | [
{
"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_.get());\n+ CHECK(tail_);\nfor (ArcIndexType ar... | C++ | Apache License 2.0 | google/or-tools | cleanups and minor syncs; sat: add LP guided heuristics |
261,230 | 07.08.2017 12:29:16 | 25,200 | e2b794cb2221a5b41ae37e9823eb95a248a017d7 | add lp_data/model_reader | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.gen.mk",
"new_path": "makefiles/Makefile.gen.mk",
"diff": "@@ -585,6 +585,7 @@ LP_DATA_LIB_OBJS = \\\n$(OBJ_DIR)/lp_data/lp_utils.$O \\\n$(OBJ_DIR)/lp_data/matrix_scaler.$O \\\n$(OBJ_DIR)/lp_data/matrix_utils.$O \\\n+ $(OBJ_DIR)/lp_data/mode... | C++ | Apache License 2.0 | google/or-tools | add lp_data/model_reader |
261,230 | 11.08.2017 16:15:41 | 25,200 | 9cb06e2f4e7896ab9b98a49d2ee2d19d9139c2cd | port one test after include path changes | [
{
"change_type": "MODIFY",
"old_path": "examples/tests/bug_fz1.cc",
"new_path": "examples/tests/bug_fz1.cc",
"diff": "// See the License for the specific language governing permissions and\n// limitations under the License.\n-#include \"base/hash.h\"\n-#include \"base/map-util.h\"\n-#include \"base/... | C++ | Apache License 2.0 | google/or-tools | port one test after include path changes |
261,304 | 31.08.2017 00:14:01 | -7,200 | b16a78445afc159cee1bd427a1c90776cfeff100 | add initial support for manylinux1 artifacts | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/Makefile",
"new_path": "tools/docker/Makefile",
"diff": "@@ -8,7 +8,8 @@ images: \\\nubuntu-16.04-image \\\nubuntu-17.04-image \\\ncentos-7-image \\\n- debian-9-image\n+ debian-9-image \\\n+ manylinux1-image\nimages-no-cache: \\\nubuntu-14.04-imag... | C++ | Apache License 2.0 | google/or-tools | add initial support for manylinux1 artifacts |
261,304 | 31.08.2017 00:30:25 | -7,200 | d48bd07c1363e4ffc59c8a5ab213a80e023c4c8c | remove redundant workdir setting | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/Makefile",
"new_path": "tools/docker/Makefile",
"diff": "@@ -42,7 +42,8 @@ pypi3: \\\ndebian-9-pypi3 \\\nubuntu-14.04-pypi3 \\\nubuntu-16.04-pypi3 \\\n- ubuntu-17.04-pypi3\n+ ubuntu-17.04-pypi3 \\\n+ manylinux1-pypi3\ntest: \\\ncentos-7-test \\\n@... | C++ | Apache License 2.0 | google/or-tools | remove redundant workdir setting |
261,304 | 31.08.2017 00:34:32 | -7,200 | 361ef3103b7efba06ca07203aca00e2f5cab0a42 | enable python tests for each manylinux1 platform | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/build-manylinux1.sh",
"new_path": "tools/docker/build-manylinux1.sh",
"diff": "@@ -58,6 +58,7 @@ function build_pypi_archives {\n### cp -prv dependencies/install/lib64/* dependencies/install/lib/\nmake install_python_modules\nmake python\n+ make t... | C++ | Apache License 2.0 | google/or-tools | enable python tests for each manylinux1 platform |
261,304 | 31.08.2017 13:14:36 | -7,200 | 44cb68867e6607aaa99c188ea20cf4b22c911e17 | add dependencies build to docker image | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/manylinux1.Dockerfile",
"new_path": "tools/docker/manylinux1.Dockerfile",
"diff": "@@ -32,6 +32,10 @@ RUN ./configure --prefix=/usr\nRUN make\nRUN make install\n+RUN git clone https://github.com/google/or-tools /root/or-tools\n+WORKDIR /root/or-to... | C++ | Apache License 2.0 | google/or-tools | add dependencies build to docker image |
261,304 | 31.08.2017 13:15:36 | -7,200 | c2cceef7b9ae422279651618d211147e78e5c12a | build speedup due to minimal cleaning after each build | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/build-manylinux1.sh",
"new_path": "tools/docker/build-manylinux1.sh",
"diff": "# default location will be used.\nset -e\n+SKIP_PLATFORMS=( cp26-cp26m cp26-cp26mu )\n+\nif [ -n \"$1\" ]; then BUILD_ROOT=\"$1\"; fi\nif [ -n \"$2\" ]; then EXPORT_ROO... | C++ | Apache License 2.0 | google/or-tools | build speedup due to minimal cleaning after each build |
261,304 | 31.08.2017 15:12:15 | -7,200 | d604a8f332d8bf9c874a43bb9c18179d05b69375 | fix behaviour incompatible with bash set -e | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/build-manylinux1.sh",
"new_path": "tools/docker/build-manylinux1.sh",
"diff": "@@ -45,8 +45,8 @@ echo \"SKIP_PLATFORMS=${SKIP_PLATFORMS[@]}\"\ncontains_element () {\nlocal e match=\"$1\"\nshift\n- for e; do [[ \"$e\" == \"$match\" ]] && return 0; ... | C++ | Apache License 2.0 | google/or-tools | fix behaviour incompatible with bash set -e |
261,304 | 31.08.2017 16:08:13 | -7,200 | 4db422396298bdfb2a5495630eeedb1210dae7a6 | fix security issue in manylinux1 image Dockerfile | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/manylinux1.Dockerfile",
"new_path": "tools/docker/manylinux1.Dockerfile",
"diff": "@@ -3,7 +3,6 @@ FROM quay.io/pypa/manylinux1_x86_64:latest\nRUN yum -y update && yum -y install \\\nyum-utils \\\nredhat-lsb \\\n- wget \\\ngit \\\nautoconf \\\nlib... | C++ | Apache License 2.0 | google/or-tools | fix security issue in manylinux1 image Dockerfile |
261,304 | 31.08.2017 17:32:57 | -7,200 | bf5cc02787aa325aa677102ee53ba32461f49f5a | add exported wheels testing | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/build-manylinux1.sh",
"new_path": "tools/docker/build-manylinux1.sh",
"diff": "# default location will be used.\nset -e\n-# Platforms to be ignored.\n-# The build of Python 2.6.x bindings is known to be broken\n-# (and 2.6 itself is deprecated).\n... | C++ | Apache License 2.0 | google/or-tools | add exported wheels testing |
261,304 | 31.08.2017 18:37:43 | -7,200 | 0f2ce6fb01376cdf984e161c13207fb3271f677e | fix wheel globbing | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/build-manylinux1.sh",
"new_path": "tools/docker/build-manylinux1.sh",
"diff": "@@ -176,7 +176,7 @@ do\n###\n### Wheel test\n###\n- WHEEL_FILE=$(echo \"${EXPORT_ROOT}\"/*ortools-*-\"${PYTAG}\"-manylinux1-*.whl)\n+ WHEEL_FILE=$(echo \"${EXPORT_ROOT}... | C++ | Apache License 2.0 | google/or-tools | fix wheel globbing |
261,304 | 03.09.2017 13:11:41 | -7,200 | dc72c2c98ecfe099a17a76a63d2ab18450346dd3 | add patch for refactored Makefile.python.mk targets | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "tools/docker/Makefile.python.mk.patch",
"diff": "+diff --git a/makefiles/Makefile.python.mk b/makefiles/Makefile.python.mk\n+index 61d0be945..979479a54 100755\n+--- a/makefiles/Makefile.python.mk\n++++ b/makefiles/Makefile.python.mk\n+@@ -1,4 +1... | C++ | Apache License 2.0 | google/or-tools | add patch for refactored Makefile.python.mk targets |
261,304 | 03.09.2017 13:12:46 | -7,200 | 2e221ffc1d77da25e1dd914978d162e3a7f9bb1a | build default configuration moved to dockerfile | [
{
"change_type": "MODIFY",
"old_path": "tools/docker/Makefile",
"new_path": "tools/docker/Makefile",
"diff": "@@ -157,4 +157,4 @@ manylinux1-image:\ndocker build -f manylinux1.Dockerfile -t or-tools-manylinux1-image .\nmanylinux1-pypi3: export manylinux1-image\n- docker run -v `pwd`/export:/export o... | C++ | Apache License 2.0 | google/or-tools | build default configuration moved to dockerfile |
261,284 | 03.09.2017 05:36:59 | 25,200 | 3d2343ba9f951479846805275c0ef5303d91614b | Fix swig C# marshaling for vector of NodeEvaluator2. Allow for AddDimensionWithVehicleTransits to be used. | [
{
"change_type": "MODIFY",
"old_path": "ortools/constraint_solver/csharp/constraint_solver.i",
"new_path": "ortools/constraint_solver/csharp/constraint_solver.i",
"diff": "@@ -69,6 +69,10 @@ class LocalSearchPhaseParameters {\n};\n} // namespace operations_research\n+namespace swig_util {\n+ class N... | C++ | Apache License 2.0 | google/or-tools | Fix swig C# marshaling for vector of NodeEvaluator2. Allow for AddDimensionWithVehicleTransits to be used. |
261,304 | 03.09.2017 18:15:23 | -7,200 | ae7b78d0b73b6ba1a961b81291b566c80827387e | remove manylinux1 patch file, integrate changes | [
{
"change_type": "MODIFY",
"old_path": "makefiles/Makefile.python.mk",
"new_path": "makefiles/Makefile.python.mk",
"diff": "-.PHONY : python install_python_modules pypi_archive pyinit pycp pyalgorithms pygraph pylp\n+.PHONY : python install_python_modules pypi_archive pypi_archive_dir pyinit pycp py... | C++ | Apache License 2.0 | google/or-tools | remove manylinux1 patch file, integrate changes |
261,232 | 04.09.2017 17:41:01 | 0 | 26eacb75c912be00d8bb401ba0c1145c837ad0c9 | Removing check unconsisent with doc in routingModel::AddDisjuntion | [
{
"change_type": "MODIFY",
"old_path": "ortools/constraint_solver/routing.cc",
"new_path": "ortools/constraint_solver/routing.cc",
"diff": "@@ -1323,7 +1323,6 @@ void RoutingModel::AddDisjunction(const std::vector<NodeIndex>& nodes,\nvoid RoutingModel::AddDisjunction(const std::vector<NodeIndex>& no... | C++ | Apache License 2.0 | google/or-tools | Removing check unconsisent with doc in routingModel::AddDisjuntion |
261,284 | 05.09.2017 03:49:52 | 25,200 | a1c4cfca6ba05e903b6530d9765c1cd49cadb955 | fix error in RoutingModel destructor when NodeEvaluator2 array is used from C#. | [
{
"change_type": "MODIFY",
"old_path": "ortools/constraint_solver/csharp/constraint_solver.i",
"new_path": "ortools/constraint_solver/csharp/constraint_solver.i",
"diff": "@@ -145,6 +145,17 @@ PROTECT_FROM_FAILURE(Solver::Fail(), arg1);\n%template(CpInt64VectorVector) std::vector<std::vector<int64> ... | C++ | Apache License 2.0 | google/or-tools | fix error in RoutingModel destructor when NodeEvaluator2 array is used from C#. |
261,296 | 05.09.2017 18:31:26 | -7,200 | 53189020e3f995715a935aab7355357ce658fb76 | Fixed Bazel build. | [
{
"change_type": "MODIFY",
"old_path": "ortools/lp_data/BUILD",
"new_path": "ortools/lp_data/BUILD",
"diff": "@@ -254,8 +254,8 @@ cc_library(\n# \"//net/proto2/util/public:differencer\",\n\"//ortools/base\",\n\"//ortools/base:file\",\n- \"//ortools/linear_solver:linear_solver_proto\",\n- \"//ortools... | C++ | Apache License 2.0 | google/or-tools | Fixed Bazel build. |
261,243 | 05.09.2017 20:37:44 | 25,200 | fc6c0c8f9ffe4ee7e02141d6b25604383c117482 | Add example for cslinearprogramming | [
{
"change_type": "ADD",
"old_path": null,
"new_path": "examples/fsharp/README.md",
"diff": "+# Examples of using or-tools in FSharp\n+\n+Examples from the or-tools library utilizing F#\n+\n+# Execution\n+Be sure to compile the or-tools before executing following\n+```shell\n+fsharpc --target:exe --o... | C++ | Apache License 2.0 | google/or-tools | Add example for cslinearprogramming |
261,230 | 06.09.2017 10:18:39 | -7,200 | 1ce1ff7e8b222d439f27d97b3455cdf7621e2517 | using uint64 overflow instead of int64 overflow which are undefined | [
{
"change_type": "MODIFY",
"old_path": "ortools/util/piecewise_linear_function.cc",
"new_path": "ortools/util/piecewise_linear_function.cc",
"diff": "@@ -135,7 +135,7 @@ int64 PiecewiseSegment::SafeValuePostReference(int64 x) const {\nreturn unsigned_sum > kint64max ? kint64max\n: static_cast<int64>... | C++ | Apache License 2.0 | google/or-tools | using uint64 overflow instead of int64 overflow which are undefined |
261,230 | 06.09.2017 10:18:51 | -7,200 | 20035002762d6e052da553222bdf2c1783f24f85 | improve sat performance | [
{
"change_type": "MODIFY",
"old_path": "ortools/sat/cp_model_solver.cc",
"new_path": "ortools/sat/cp_model_solver.cc",
"diff": "@@ -1861,15 +1861,11 @@ std::function<void(Model*)> NewFeasibleSolutionObserver(\n}\nstd::function<SatParameters(Model*)> NewSatParameters(const std::string& params) {\n- r... | C++ | Apache License 2.0 | google/or-tools | improve sat performance |
261,284 | 06.09.2017 01:23:25 | 25,200 | 552677354eade1a8ab2931789539b0d79f7a4f83 | fix RouteModel SetVehicleCost and methods that take NodeEvaluator2 array so they hold references so native code does not have a reference that can be gc'ed. Remove aux methods from RouteMethod. Add GC.SupressFinalize to DisownAndGetPermanentCallback as after DisownAndGetPermanentCallback gets called there is no work required by finalizer anymore. | [
{
"change_type": "DELETE",
"old_path": "ortools/com/google/ortools/constraintsolver/RoutingModelHelper.cs",
"new_path": null,
"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 Li... | C++ | Apache License 2.0 | google/or-tools | fix RouteModel SetVehicleCost and methods that take NodeEvaluator2 array so they hold references so native code does not have a reference that can be gc'ed. Remove aux methods from RouteMethod. Add GC.SupressFinalize to DisownAndGetPermanentCallback as after DisownAndGetPermanentCallback gets called there is no work required by finalizer anymore. |
261,284 | 07.09.2017 00:57:03 | 25,200 | 4a8700edbd4e16e2331cda4c641e5c5f92ef4ad1 | fix DisownAndGetPermanentCallback not getting called on NodeEvaluator2 when array is used. | [
{
"change_type": "MODIFY",
"old_path": "ortools/constraint_solver/csharp/constraint_solver.i",
"new_path": "ortools/constraint_solver/csharp/constraint_solver.i",
"diff": "@@ -145,17 +145,6 @@ PROTECT_FROM_FAILURE(Solver::Fail(), arg1);\n%template(CpInt64VectorVector) std::vector<std::vector<int64> ... | C++ | Apache License 2.0 | google/or-tools | fix DisownAndGetPermanentCallback not getting called on NodeEvaluator2 when array is used. |
261,230 | 08.09.2017 13:57:39 | -7,200 | a223dc2f82c66edbc33550a49d1f6917b09d10d7 | fix linear_assignment big | [
{
"change_type": "MODIFY",
"old_path": "ortools/graph/linear_assignment.h",
"new_path": "ortools/graph/linear_assignment.h",
"diff": "@@ -730,42 +730,36 @@ class LinearSumAssignment {\n// while we have only relabelings that take place as part of the\n// double-push operation at nodes without excess.... | C++ | Apache License 2.0 | google/or-tools | fix linear_assignment big |
261,230 | 08.09.2017 13:58:10 | -7,200 | 9a299d7fae511a8d906b8c5535e2a5761182c694 | minor improvement to internal comments | [
{
"change_type": "MODIFY",
"old_path": "ortools/graph/hamiltonian_path.h",
"new_path": "ortools/graph/hamiltonian_path.h",
"diff": "@@ -783,6 +783,7 @@ bool HamiltonianPathSolver<CostType, CostFunction>::PathIsValid(\ntemplate <typename CostType, typename CostFunction>\nbool HamiltonianPathSolver<Co... | C++ | Apache License 2.0 | google/or-tools | minor improvement to internal comments |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.