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
15.06.2018 15:14:39
-7,200
c51f5fdcc89364c32fd131b4cb05570a74060378
Add test_fz on AppVeyor-CI
[ { "change_type": "MODIFY", "old_path": ".appveyor.yml", "new_path": ".appveyor.yml", "diff": "@@ -54,6 +54,7 @@ build_script:\n- if \"%BUILDER%\"==\"make\" tools\\make help_%LANGUAGE%\n- if \"%BUILDER%\"==\"make\" tools\\make %LANGUAGE%\n- if \"%BUILDER%\"==\"make\" tools\\make test_%LANGUAGE%\n+ - ...
C++
Apache License 2.0
google/or-tools
Add test_fz on AppVeyor-CI
261,230
15.06.2018 19:36:33
-7,200
43d2de294a15c6913a626e8da4f2be1264e8b294
tweak // and lns search in sat/fz
[ { "change_type": "MODIFY", "old_path": "ortools/flatzinc/cp_model_fz_solver.cc", "new_path": "ortools/flatzinc/cp_model_fz_solver.cc", "diff": "#include \"ortools/util/sigint.h\"\n#include \"ortools/util/time_limit.h\"\n-DEFINE_string(cp_sat_params, \"\", \"SatParameters as a text proto.\");\nDEFINE...
C++
Apache License 2.0
google/or-tools
tweak // and lns search in sat/fz
261,230
15.06.2018 21:40:28
-7,200
4eb3ddf0ed8b8687e77cac05fca13aa37c4ce43b
parallel lns for sat
[ { "change_type": "MODIFY", "old_path": "ortools/sat/lns.h", "new_path": "ortools/sat/lns.h", "diff": "#include <functional>\n#include <vector>\n+#include \"ortools/base/threadpool.h\"\n+\nnamespace operations_research {\nnamespace sat {\n@@ -86,8 +88,22 @@ inline void OptimizeWithLNS(\nSolveNeighbor...
C++
Apache License 2.0
google/or-tools
parallel lns for sat
261,230
18.06.2018 15:27:25
-7,200
7bbe09d26adcc56d96b74ea3023fbe872a323a73
[SAT,FZ] pass best solution found so far to LNS workers
[ { "change_type": "MODIFY", "old_path": "ortools/flatzinc/cp_model_fz_solver.cc", "new_path": "ortools/flatzinc/cp_model_fz_solver.cc", "diff": "@@ -898,6 +898,8 @@ CpSolverResponse WorkerSearch(\nconst CpModelProto& cp_model, const SatParameters& parameters,\nconst fz::FlatzincParameters& p,\nconst ...
C++
Apache License 2.0
google/or-tools
[SAT,FZ] pass best solution found so far to LNS workers
261,230
18.06.2018 16:31:55
-7,200
e8287052b6108f92cdde70b7b1f2c1476e2b2f01
small cleanup on sat/fz
[ { "change_type": "MODIFY", "old_path": "ortools/flatzinc/cp_model_fz_solver.cc", "new_path": "ortools/flatzinc/cp_model_fz_solver.cc", "diff": "@@ -1089,7 +1089,7 @@ void SolveFzWithCpModelProto(const fz::Model& fz_model,\nThreadPool pool(\"Parallel_FlatZinc_sat\", num_active_threads);\npool.StartWo...
C++
Apache License 2.0
google/or-tools
small cleanup on sat/fz
261,230
19.06.2018 20:08:07
-7,200
ba6127b26a1cc584f6fab21b0361e2ad6b45885a
objective and solution exchange between search threads in the 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": "@@ -898,9 +898,9 @@ CpSolverResponse WorkerSearch(\nconst CpModelProto& cp_model, const SatParameters& parameters,\nconst fz::FlatzincParameters& p,\nconst ...
C++
Apache License 2.0
google/or-tools
objective and solution exchange between search threads in the SAT/FZ solver
261,230
19.06.2018 20:08:26
-7,200
3d5f530f9a36451ab4f33883c480c3161915d3df
extra function in glop
[ { "change_type": "MODIFY", "old_path": "ortools/glop/revised_simplex.cc", "new_path": "ortools/glop/revised_simplex.cc", "diff": "@@ -2980,6 +2980,17 @@ ITIVector<RowIndex, SparseRow> RevisedSimplex::ComputeDictionary(\nreturn dictionary;\n}\n+void RevisedSimplex::ComputeBasicVariablesForState(\n+ c...
C++
Apache License 2.0
google/or-tools
extra function in glop
261,230
21.06.2018 13:53:42
-7,200
8bc9b159598854cc80434cb09a6b92c7cf040ddd
add missing random function
[ { "change_type": "MODIFY", "old_path": "ortools/base/random.h", "new_path": "ortools/base/random.h", "diff": "#ifndef OR_TOOLS_BASE_RANDOM_H_\n#define OR_TOOLS_BASE_RANDOM_H_\n+#include <random>\n#include <string>\n#include \"ortools/base/basictypes.h\"\n@@ -72,6 +73,17 @@ class ACMRandom {\n#else\n...
C++
Apache License 2.0
google/or-tools
add missing random function
261,230
22.06.2018 14:03:11
-7,200
3cc06b82c7cdef2ca5593caddd61bebd19002714
move search diversification from flatzinc to sat
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.gen.mk", "new_path": "makefiles/Makefile.gen.mk", "diff": "@@ -1829,10 +1829,8 @@ $(SRC_DIR)/ortools/sat/integer.h: \\\n$(SRC_DIR)/ortools/util/sorted_interval_list.h\n$(SRC_DIR)/ortools/sat/integer_search.h: \\\n- $(SRC_DIR)/ortools/base/ra...
C++
Apache License 2.0
google/or-tools
move search diversification from flatzinc to sat
261,218
26.06.2018 10:51:01
-7,200
ae79a832ccb0492507cb6456d3055dc6d75f711b
Fix compilation on Windows Need to add /DNOMINMAX since random.h define min/max
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.win.mk", "new_path": "makefiles/Makefile.win.mk", "diff": "@@ -133,7 +133,7 @@ CFLAGS = -nologo $(SYSCFLAGS) $(DEBUG) /I$(INC_DIR) /I$(GEN_DIR) \\\n$(GFLAGS_INC) $(GLOG_INC) $(ZLIB_INC) $(MINISAT_INC) $(PROTOBUF_INC) \\\n$(CBC_INC) $(CLP_INC...
C++
Apache License 2.0
google/or-tools
Fix compilation on Windows Need to add /DNOMINMAX since random.h define min/max
261,218
22.06.2018 10:17:32
-7,200
ac9ad391366aa5f0a4ee74dad68b54e6035292d0
Add log when no solution found
[ { "change_type": "MODIFY", "old_path": "examples/com/google/ortools/samples/CapacitatedVehicleRoutingProblemWithTimeWindows.java", "new_path": "examples/com/google/ortools/samples/CapacitatedVehicleRoutingProblemWithTimeWindows.java", "diff": "@@ -275,6 +275,8 @@ public class CapacitatedVehicleRouti...
C++
Apache License 2.0
google/or-tools
Add log when no solution found
261,218
22.06.2018 10:17:59
-7,200
9a97423d6c340f27ece3c805622ed89bd4fd272b
Use PATH_CHEAPEST_ARC as first strategy
[ { "change_type": "MODIFY", "old_path": "examples/com/google/ortools/samples/CapacitatedVehicleRoutingProblemWithTimeWindows.java", "new_path": "examples/com/google/ortools/samples/CapacitatedVehicleRoutingProblemWithTimeWindows.java", "diff": "@@ -233,7 +233,7 @@ public class CapacitatedVehicleRouti...
C++
Apache License 2.0
google/or-tools
Use PATH_CHEAPEST_ARC as first strategy
261,218
22.06.2018 10:07:05
-7,200
e3af3d798aaefab4bb9fd6e1a28559ebc069ebcf
Add order duration
[ { "change_type": "MODIFY", "old_path": "examples/com/google/ortools/samples/CapacitatedVehicleRoutingProblemWithTimeWindows.java", "new_path": "examples/com/google/ortools/samples/CapacitatedVehicleRoutingProblemWithTimeWindows.java", "diff": "@@ -64,6 +64,8 @@ public class CapacitatedVehicleRouting...
C++
Apache License 2.0
google/or-tools
Add order duration
261,218
22.06.2018 10:17:12
-7,200
f00fe6eb49bd06e500274de8e4668c3aa71bece2
Update Start/End time for vehicle
[ { "change_type": "MODIFY", "old_path": "examples/com/google/ortools/samples/CapacitatedVehicleRoutingProblemWithTimeWindows.java", "new_path": "examples/com/google/ortools/samples/CapacitatedVehicleRoutingProblemWithTimeWindows.java", "diff": "@@ -73,6 +73,8 @@ public class CapacitatedVehicleRouting...
C++
Apache License 2.0
google/or-tools
Update Start/End time for vehicle
261,218
22.06.2018 14:07:57
-7,200
131c4e11353bbda01d2dcb4d36b0150bdd2f3df4
Add NodeToIndex/IndexToNode in Java
[ { "change_type": "MODIFY", "old_path": "examples/com/google/ortools/samples/CapacitatedVehicleRoutingProblemWithTimeWindows.java", "new_path": "examples/com/google/ortools/samples/CapacitatedVehicleRoutingProblemWithTimeWindows.java", "diff": "@@ -242,7 +242,7 @@ public class CapacitatedVehicleRouti...
C++
Apache License 2.0
google/or-tools
Add NodeToIndex/IndexToNode in Java
261,230
27.06.2018 10:07:27
-7,200
199dbee67241e0c9549d3f48e3c8cf19e5d18d84
minor re-indents; typo fixes
[ { "change_type": "MODIFY", "old_path": "ortools/algorithms/hungarian.h", "new_path": "ortools/algorithms/hungarian.h", "diff": "//\n// This code is based on (read: translated from) the Java version\n// (read: translated from) the Python version at\n-// http://www.clapper.org/software/python/munkres/...
C++
Apache License 2.0
google/or-tools
minor re-indents; typo fixes
261,230
27.06.2018 10:07:51
-7,200
707a4560d182df9ec2931326fdb67187c57282e8
norm on the inverse matrix
[ { "change_type": "MODIFY", "old_path": "ortools/lp_data/sparse.cc", "new_path": "ortools/lp_data/sparse.cc", "diff": "@@ -1281,5 +1281,63 @@ void TriangularMatrix::ComputeRowsToConsiderInSortedOrder(\n}\n}\n+// A known upper bound for the infinity norm of T^{-1} is the\n+// infinity norm of y where ...
C++
Apache License 2.0
google/or-tools
norm on the inverse matrix
261,230
27.06.2018 10:08:08
-7,200
745fab7b06d47968cbf23f172fb5d3a3dd5bfbdd
LNS improvements
[ { "change_type": "MODIFY", "old_path": "ortools/flatzinc/cp_model_fz_solver.cc", "new_path": "ortools/flatzinc/cp_model_fz_solver.cc", "diff": "@@ -756,6 +756,8 @@ void CpModelProtoWithMapping::TranslateSearchAnnotations(\nfor (int i = 0; i < proto.variables_size(); ++i) {\nstrategy->add_variables(i...
C++
Apache License 2.0
google/or-tools
LNS improvements
261,230
27.06.2018 15:59:02
-7,200
89af2a6b61e40e4081727d312df3c0168c838a76
remove completion heuristic from sat/fz, move it to sat directly; clean up // cp-sat + lns code
[ { "change_type": "MODIFY", "old_path": "ortools/base/filelineiter.h", "new_path": "ortools/base/filelineiter.h", "diff": "// line.\n// * Options are available to keep the trailing '\\n' for each line, to remove\n// carriage-return chararters ('\\r'), and to remove blank lines.\n-\n-#ifndef OR_TOOLS_...
C++
Apache License 2.0
google/or-tools
remove completion heuristic from sat/fz, move it to sat directly; clean up // cp-sat + lns code
261,230
27.06.2018 23:32:56
-7,200
b49f23e74d65d886e645496ea43964cee62acdb4
LNS wait for the solution from the other threads
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_solver.cc", "new_path": "ortools/sat/cp_model_solver.cc", "diff": "#include \"ortools/sat/cp_model_solver.h\"\n+#if defined(_MSC_VER)\n+#include <windows.h>\n+#else\n+#include <unistd.h>\n+#endif\n+\n#include <algorithm>\n#include <functio...
C++
Apache License 2.0
google/or-tools
LNS wait for the solution from the other threads
261,230
28.06.2018 12:35:25
-7,200
d961688ee21c0db69fbe8fd959d3d473b31a443c
fix sat code
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_lns.cc", "new_path": "ortools/sat/cp_model_lns.cc", "diff": "namespace operations_research {\nnamespace sat {\n+namespace {\n+\n+// Returns a CpModelProto where the variables at given position where fixed to\n+// the value they take in the...
C++
Apache License 2.0
google/or-tools
fix sat code
261,218
28.06.2018 22:39:58
-7,200
94b539b77537f9441ce5acaa64f68431bdb645a7
Blind Fix Windows
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_solver.cc", "new_path": "ortools/sat/cp_model_solver.cc", "diff": "@@ -2936,7 +2936,7 @@ CpSolverResponse SolveCpModelWithLNS(const CpModelProto& model_proto,\nresponse = synchro->f();\nif (response.status() != CpSolverStatus::UNKNOWN) bre...
C++
Apache License 2.0
google/or-tools
Blind Fix Windows
261,218
28.06.2018 23:35:35
-7,200
81ab6f8956b408667898e830b5f030d0d18acba3
Move include windows.h to bottom
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_solver.cc", "new_path": "ortools/sat/cp_model_solver.cc", "diff": "#include \"ortools/sat/cp_model_solver.h\"\n-#if defined(_MSC_VER)\n-#include <windows.h>\n-#else\n-#include <unistd.h>\n-#endif\n-\n#include <algorithm>\n#include <functio...
C++
Apache License 2.0
google/or-tools
Move include windows.h to bottom
261,218
29.06.2018 09:31:52
-7,200
3043efa43772c7287a10ff048de24d6f5e1bb1e3
CMake: Add missing __WIN32__
[ { "change_type": "MODIFY", "old_path": "cmake/cpp.cmake", "new_path": "cmake/cpp.cmake", "diff": "@@ -90,6 +90,7 @@ target_link_libraries(${PROJECT_NAME} PUBLIC\nThreads::Threads)\nif(WIN32)\ntarget_link_libraries(${PROJECT_NAME} PUBLIC psapi.lib ws2_32.lib)\n+target_compile_definitions(${PROJECT_NA...
C++
Apache License 2.0
google/or-tools
CMake: Add missing __WIN32__
261,218
29.06.2018 09:59:49
-7,200
8d7eb4774c726bc9272750c5af1dc668cc15e6c9
Sat: use std::this_thread::sleep_for(50ms) instead
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_solver.cc", "new_path": "ortools/sat/cp_model_solver.cc", "diff": "#include <unordered_map>\n#include <unordered_set>\n#include <utility>\n+#include <chrono>\n+#include <thread>\n#include \"ortools/base/commandlineflags.h\"\n#include \"ort...
C++
Apache License 2.0
google/or-tools
Sat: use std::this_thread::sleep_for(50ms) instead
261,230
29.06.2018 10:58:07
-7,200
f3d2da5b24543bc09bb2708690d161c34c3b22e0
work on sat lns
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_lns.cc", "new_path": "ortools/sat/cp_model_lns.cc", "diff": "@@ -60,6 +60,7 @@ NeighborhoodGenerator::NeighborhoodGenerator(CpModelProto const* model,\nfor (int ct_index = 0; ct_index < model_proto_.constraints_size();\n++ct_index) {\nfor ...
C++
Apache License 2.0
google/or-tools
work on sat lns
261,243
24.04.2018 19:33:44
25,200
d581a3fff81ff04312f63818325ef4bdad867763
Build OrTools using netstandard
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -13,6 +13,10 @@ endif\nORTOOLS_DLL_NAME=OrTools\nORTOOLS_NUSPEC_FILE=$(ORTOOLS_DLL_NAME).nuspec\n+CLR_PROTOBUF_DLL_NAME?=Google.Protobuf\n+CLR_ORTOOLS_DLL_NAME?=Google.$(ORT...
C++
Apache License 2.0
google/or-tools
Build OrTools using netstandard
261,243
25.04.2018 00:12:09
25,200
d43cd0c12d15ad5b116f2907f7e0a0822feca188
Add test project and example tests
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -13,6 +13,8 @@ endif\nORTOOLS_DLL_NAME=OrTools\nORTOOLS_NUSPEC_FILE=$(ORTOOLS_DLL_NAME).nuspec\n+ORTOOLS_DLL_TEST=$(ORTOOLS_DLL_NAME).Tests\n+\nCLR_PROTOBUF_DLL_NAME?=Google...
C++
Apache License 2.0
google/or-tools
Add test project and example tests
261,243
25.04.2018 01:31:28
25,200
b7a458f321b8cda510105911d248cc3a1e985976
Add F# with associated makefile targets
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "-# ---------- CSharp support using SWIG ----------\n+# ---------- dotnet support using SWIG ----------\n.PHONY: help_dotnet # Generate list of dotnet targets with descriptions....
C++
Apache License 2.0
google/or-tools
Add F# with associated makefile targets
261,243
25.04.2018 02:12:18
25,200
a8ee3cbbee16d61d7216e6109096b2713dc42a23
Add nuget package holding all libraries for development
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -213,9 +213,21 @@ dotnet: \\\ncsharp_dotnet \\\nfsharp_dotnet\n+\n+ifeq ($(SYSTEM),win)\n+NUGET_COMPILER ?= nuget.exe\n+NUGET_EXECUTABLE := $(shell $(WHICH) $(NUGET_COMPILER...
C++
Apache License 2.0
google/or-tools
Add nuget package holding all libraries for development
261,243
26.04.2018 20:41:34
25,200
9aaa87a35a388812cdb30fbf9f8156cb858bb235
Only build dotnet in CI
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -23,12 +23,7 @@ matrix:\ndist: trusty\nlanguage: cpp\ncompiler: gcc\n- env: BUILDER=make DISTRO=native LANGUAGE=csharp\n- - os: linux\n- dist: trusty\n- language: cpp\n- compiler: gcc\n- env: BUILDER=make DI...
C++
Apache License 2.0
google/or-tools
Only build dotnet in CI
261,243
26.04.2018 21:25:46
25,200
2d7705afb44e742fe6e245a6a0140ae3953c1e79
Adding target for keyfile
[ { "change_type": "MODIFY", "old_path": ".travis/script.sh", "new_path": ".travis/script.sh", "diff": "@@ -17,7 +17,6 @@ function checkenv() {\njava -version\nelif [ \"${LANGUAGE}\" == dotnet ]; then\nmono --version\n- which dotnet\nfi\n}\n" }, { "change_type": "MODIFY", "old_path": "make...
C++
Apache License 2.0
google/or-tools
Adding target for keyfile
261,243
27.04.2018 09:12:25
25,200
4a9d01a465e5fdd3bb160d26a573bdb5c18e837b
Account for paths in Windows
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -182,19 +182,31 @@ $(BIN_DIR)/$(CLR_ORTOOLS_DLL_NAME)$(DLL): \\\n$(GEN_DIR)/com/google/ortools/sat/CpModel.g.cs \\\n$(OR_TOOLS_LIBS)\n$(DYNAMIC_LD) $(LDOUT)$(LIB_DIR)$S$(LIB...
C++
Apache License 2.0
google/or-tools
Account for paths in Windows
261,243
27.04.2018 12:47:07
25,200
8029fcea0f75eec4b3f9c89c4329167d7905e87f
Call test runner once for all test libraries
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -219,8 +219,12 @@ test_dotnet:\n\"$(DOTNET_EXECUTABLE)\" build \"ortools$Sdotnet$S$(ORTOOLS_DLL_TEST)$S$(ORTOOLS_DLL_TEST).csproj\"\n\"$(DOTNET_EXECUTABLE)\" clean \"ortools...
C++
Apache License 2.0
google/or-tools
Call test runner once for all test libraries
261,243
05.05.2018 19:04:06
25,200
c683c2aea0083a6aa894731552573364c94e0462
Use correct folder for test assembly on windows builds
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -220,11 +220,11 @@ test_dotnet:\n\"$(DOTNET_EXECUTABLE)\" clean \"ortools$Sdotnet$S$(FSHARP_ORTOOLS_DLL_TEST)$S$(FSHARP_ORTOOLS_DLL_TEST).fsproj\"\n\"$(DOTNET_EXECUTABLE)\" ...
C++
Apache License 2.0
google/or-tools
Use correct folder for test assembly on windows builds
261,243
03.06.2018 20:52:48
25,200
d8f348bbf2bf288f5c65ddcd4039f7c084f04de5
Use correct protobuf binary
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -125,25 +125,25 @@ $(OBJ_DIR)/swig/sat_csharp_wrap.$O: $(GEN_DIR)/ortools/sat/sat_csharp_wrap.cc\n# Protobufs\n$(GEN_DIR)/com/google/ortools/constraintsolver/SearchLimit.g.c...
C++
Apache License 2.0
google/or-tools
Use correct protobuf binary
261,243
03.06.2018 21:03:08
25,200
d4d34a4a0e3acef5b7daf89e9a370356b4fcca5b
correct output folder for library
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -181,7 +181,7 @@ $(BIN_DIR)/$(CLR_ORTOOLS_DLL_NAME)$(DLL): \\\n$(GEN_DIR)/com/google/ortools/constraintsolver/RoutingEnums.g.cs\\\n$(GEN_DIR)/com/google/ortools/sat/CpModel....
C++
Apache License 2.0
google/or-tools
correct output folder for library
261,243
05.06.2018 02:28:54
25,200
408fc70416669892d465f2447def77a9cf51bb51
Correct dotnet compiler path on osx
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -28,7 +28,7 @@ ifeq ($(SYSTEM), win)\nDOTNET_EXECUTABLE := $(shell $(WHICH) dotnet.exe 2>nul)\nelse # UNIX\nifeq ($(PLATFORM),MACOSX)\n-DOTNET_EXECUTABLE := $(shell dirname ...
C++
Apache License 2.0
google/or-tools
Correct dotnet compiler path on osx
261,243
05.06.2018 22:12:40
25,200
ccadca62731d590f223277ad5da9acff95921b15
Use correct name for library when importing
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -21,7 +21,7 @@ ORTOOLS_NUSPEC_FILE=$(ORTOOLS_DLL_NAME).nuspec\nCLR_PROTOBUF_DLL_NAME?=Google.Protobuf\nCLR_ORTOOLS_DLL_NAME?=Google.$(ORTOOLS_DLL_NAME)\nBASE_CLR_ORTOOLS_DLL...
C++
Apache License 2.0
google/or-tools
Use correct name for library when importing
261,243
24.06.2018 18:11:33
25,200
8f79b61f1f639b4569f2d1709eb681a4f05f3c90
Fix dependencies for linux
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -43,7 +43,7 @@ ifeq ($(PLATFORM),MACOSX)\nDOTNET_LIB_DIR = env DYLD_FALLBACK_LIBRARY_PATH=$(LIB_DIR)\nendif\nifeq ($(PLATFORM),LINUX)\n-DOTNET_LIB_DIR = env LD_LIBRARY_PATH=...
C++
Apache License 2.0
google/or-tools
Fix dependencies for linux
261,218
25.06.2018 16:38:16
-7,200
63a037639b12e7f6d02877bb665260fc538919d5
dotnet: fix OR_TOOLS_LDFLAGS
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -186,7 +186,7 @@ $(BIN_DIR)/$(CLR_ORTOOLS_DLL_NAME)$(DLL): \\\n$(GEN_DIR)/com/google/ortools/constraintsolver/RoutingEnums.g.cs\\\n$(GEN_DIR)/com/google/ortools/sat/CpModel....
C++
Apache License 2.0
google/or-tools
dotnet: fix OR_TOOLS_LDFLAGS
261,218
25.06.2018 16:49:46
-7,200
468dbe0a8e8cdbfa72b9923e8bb6409da34d3dc0
dotnet: fix clean rule
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -245,7 +245,7 @@ dotnet: clean_dotnet test_dotnet\n\"$(DOTNET_EXECUTABLE)\" publish -c Release -o \"..$S..$S..$S$(DOTNET_BUILD_DIR)\" -f netstandard2.0 ortools$Sdotnet$S$(FS...
C++
Apache License 2.0
google/or-tools
dotnet: fix clean rule
261,218
25.06.2018 17:03:01
-7,200
ee846c9377e2747fe13e8d1194aa94a9121d6808
dotnet: Removing unneeded copies of dependency libs.
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -193,12 +193,6 @@ ifeq ($(SYSTEM),win)\nelse\n$(COPY) ortools$Sdotnet$S$(ORTOOLS_DLL_NAME)$Sbin$SDebug$Snetstandard2.0$S*.* $(BIN_DIR)\nendif\n-ifeq ($(PLATFORM),MACOSX)\n- ...
C++
Apache License 2.0
google/or-tools
dotnet: Removing unneeded copies of dependency libs.
261,218
26.06.2018 14:43:02
-7,200
3844b47b1bf3c353c39d185fb3b2b8cf6710c84b
Makefile: fix command separator on Windows
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -207,7 +207,7 @@ endif\nclean_dotnet:\n$(DELREC) $(GEN_DIR)\n$(DELREC) .$S$(DOTNET_ORTOOLS_TEST_DIR)\n- $(foreach var,$(CLEAN_FILES), $(DEL) bin$S$(var);)\n+ $(foreach var,$...
C++
Apache License 2.0
google/or-tools
Makefile: fix command separator on Windows
261,218
26.06.2018 16:23:31
-7,200
8dc57a926c813e46c24e9c0f819d24ecef6a5dcb
dotnet: Fix PROTOC usage
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -130,25 +130,25 @@ $(OBJ_DIR)/swig/sat_csharp_wrap.$O: $(GEN_DIR)/ortools/sat/sat_csharp_wrap.cc\n# Protobufs\n$(GEN_DIR)/com/google/ortools/constraintsolver/SearchLimit.g.c...
C++
Apache License 2.0
google/or-tools
dotnet: Fix PROTOC usage
261,218
26.06.2018 16:24:19
-7,200
6d6233bf4c8dd0d320bab74ab007e5bceacb7c51
dotnet: cleaning $(BIN_DIR)/$(CLR_ORTOOLS_DLL_NAME)$(DLL)
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -186,7 +186,15 @@ $(BIN_DIR)/$(CLR_ORTOOLS_DLL_NAME)$(DLL): \\\n$(GEN_DIR)/com/google/ortools/constraintsolver/RoutingEnums.g.cs\\\n$(GEN_DIR)/com/google/ortools/sat/CpModel...
C++
Apache License 2.0
google/or-tools
dotnet: cleaning $(BIN_DIR)/$(CLR_ORTOOLS_DLL_NAME)$(DLL)
261,218
27.06.2018 11:32:52
-7,200
da0ec11951d83a4b9e7bf3ef68d59be093ba3370
dotnet: Fix path separator
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -74,7 +74,7 @@ $(GEN_DIR)/ortools/linear_solver/linear_solver_csharp_wrap.cc: \\\n$(SWIG_BINARY) $(SWIG_INC) -I$(INC_DIR) -c++ -csharp -o $(GEN_DIR)$Sortools$Slinear_solver$...
C++
Apache License 2.0
google/or-tools
dotnet: Fix path separator
261,218
27.06.2018 14:43:59
-7,200
d1bc300dba30af5091e002579c69cdaaef65d621
dotnet: limit code width
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -40,19 +40,16 @@ endif\nDOTNET_LIB_DIR :=\nifeq ($(PLATFORM),MACOSX)\n-DOTNET_LIB_DIR = env DYLD_FALLBACK_LIBRARY_PATH=$(LIB_DIR)\n+DOTNET_LIB_DIR = DYLD_LIBRARY_PATH=\"$(LI...
C++
Apache License 2.0
google/or-tools
dotnet: limit code width
261,218
27.06.2018 16:44:19
-7,200
10805b8dd2a35fdf2c320be3fabfcb47a678d7a2
Don't make dotnet dependent on clean_dotnet
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -291,7 +291,7 @@ endif\n.PHONY: dotnet # Build OrTools for .NET\n-dotnet: clean_dotnet test_dotnet\n+dotnet: test_dotnet\n$(SED) -i -e \"s/<Version>.*<\\/Version>/<Version>$...
C++
Apache License 2.0
google/or-tools
Don't make dotnet dependent on clean_dotnet
261,218
28.06.2018 10:11:57
-7,200
6e8e4f3e10453accd5c966ca496f4ea1dd2ce067
dotnet: cleanup variable naming
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -11,10 +11,10 @@ else\nendif\nORTOOLS_DLL_NAME=OrTools\n-ORTOOLS_DLL_TEST=$(ORTOOLS_DLL_NAME).Tests\n+ORTOOLS_TEST_DLL_NAME=$(ORTOOLS_DLL_NAME).Tests\n-FSHARP_ORTOOLS_DLL_NA...
C++
Apache License 2.0
google/or-tools
dotnet: cleanup variable naming
261,218
28.06.2018 11:24:54
-7,200
f3b4624cb1f3194b8911be5fd668677ef4447d35
dotnet: remove BASE_CLR_ORTOOLS_DLL_NAME
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -20,7 +20,6 @@ ORTOOLS_NUSPEC_FILE=$(ORTOOLS_DLL_NAME).nuspec\nCLR_PROTOBUF_DLL_NAME?=Google.Protobuf\nCLR_ORTOOLS_DLL_NAME?=Google.$(ORTOOLS_DLL_NAME)\n-BASE_CLR_ORTOOLS_DL...
C++
Apache License 2.0
google/or-tools
dotnet: remove BASE_CLR_ORTOOLS_DLL_NAME
261,218
28.06.2018 11:25:36
-7,200
521b5729a2b489d693e7cf4ecfaaecb27082d338
dotnet: Update detect_dotnet
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -12,7 +12,6 @@ endif\nORTOOLS_DLL_NAME=OrTools\nORTOOLS_TEST_DLL_NAME=$(ORTOOLS_DLL_NAME).Tests\n-\nORTOOLS_FSHARP_DLL_NAME=$(ORTOOLS_DLL_NAME).FSharp\nORTOOLS_FSHARP_TEST_D...
C++
Apache License 2.0
google/or-tools
dotnet: Update detect_dotnet
261,218
28.06.2018 11:27:34
-7,200
b355529e3de8e339b44bc6984050b48b65d83eb2
dotnet: Add missing CLR_ORTOOLS variable
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -19,6 +19,9 @@ ORTOOLS_NUSPEC_FILE=$(ORTOOLS_DLL_NAME).nuspec\nCLR_PROTOBUF_DLL_NAME?=Google.Protobuf\nCLR_ORTOOLS_DLL_NAME?=Google.$(ORTOOLS_DLL_NAME)\n+CLR_ORTOOLS_TEST_DL...
C++
Apache License 2.0
google/or-tools
dotnet: Add missing CLR_ORTOOLS variable
261,218
28.06.2018 11:28:26
-7,200
019220dc5b7fc3f16aeae6ab90bcbea9576d026b
dotnet: restore Google.OrTools.FSharp.Tests project
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -288,6 +288,7 @@ clean_dotnet:\n.PHONY: test_dotnet # Test dotnet version of OR-Tools\ntest_dotnet: csharp_dotnet fsharp_dotnet\n\"$(DOTNET_EXECUTABLE)\" restore --packages ...
C++
Apache License 2.0
google/or-tools
dotnet: restore Google.OrTools.FSharp.Tests project
261,218
28.06.2018 11:28:49
-7,200
314c2d16bc691130d57adeb7a3dd148a2c6ef232
dotnet: Fix test_dotnet on windows
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -294,8 +294,8 @@ test_dotnet: csharp_dotnet fsharp_dotnet\n\"$(DOTNET_EXECUTABLE)\" build -o \"..$S..$S..$S$(DOTNET_ORTOOLS_TEST_DIR)\" \"ortools$Sdotnet$S$(ORTOOLS_TEST_DLL...
C++
Apache License 2.0
google/or-tools
dotnet: Fix test_dotnet on windows
261,218
28.06.2018 11:35:01
-7,200
f41763869bd76ab5b7938b3eb8ef2e4a58acf3f8
dotnet: use consistent naming for temp dir same naming than python / cpp / flatzinc
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -25,8 +25,8 @@ CLR_ORTOOLS_FSHARP_TEST_DLL_NAME?=Google.$(ORTOOLS_FSHARP_TEST_DLL_NAME)\nCLR_ORTOOLS_IMPORT_DLL_NAME:=$(CLR_ORTOOLS_DLL_NAME).import\n# relative to the proje...
C++
Apache License 2.0
google/or-tools
dotnet: use consistent naming for temp dir same naming than python / cpp / flatzinc
261,218
28.06.2018 11:36:21
-7,200
8f1dd4ff6cd51f04f7607f4d3d06a5278a994a02
archive: fix temp_fz_test_dir directory name
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.archive.mk", "new_path": "makefiles/Makefile.archive.mk", "diff": "@@ -212,7 +212,7 @@ else\nendif\ncd temp$S$(INSTALL_DIR) && $(MAKE) test && cd ../.. && $(RENAME) lib2 lib && echo \"archive test succeeded\" || ( cd ../.. && $(RENAME) lib2 ...
C++
Apache License 2.0
google/or-tools
archive: fix temp_fz_test_dir directory name
261,218
28.06.2018 11:43:14
-7,200
bd55aad5113900ea84e7f518e12375ba6d642a59
clean_dotnet: remove keyfile
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -283,6 +283,7 @@ clean_dotnet:\n-$(DEL) $(BIN_DIR)$S$(CLR_ORTOOLS_DLL_NAME).*\n-$(DEL) $(BIN_DIR)$S$(CLR_ORTOOLS_FSHARP_DLL_NAME).*\n-$(DEL) $(LIB_DIR)$S$(CLR_ORTOOLS_IMPORT...
C++
Apache License 2.0
google/or-tools
clean_dotnet: remove keyfile
261,218
28.06.2018 11:48:38
-7,200
090d2c47c6b949d1fcf0b74339fa9bfa0a1a5a0f
Rework clean_dotnet target
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -279,10 +279,10 @@ clean_dotnet:\n-$(DELREC) ortools$Sdotnet$S$(ORTOOLS_FSHARP_TEST_DLL_NAME)$Sbin\n-$(DELREC) ortools$Sdotnet$S$(ORTOOLS_FSHARP_TEST_DLL_NAME)$Sobj\n-$(DELR...
C++
Apache License 2.0
google/or-tools
Rework clean_dotnet target
261,218
28.06.2018 17:43:24
-7,200
a3af1d6d92926aae36037b7ca1b4bbb9810885d3
dotnet: use immediate expansion for variables
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -10,18 +10,18 @@ else\n@echo\nendif\n-ORTOOLS_DLL_NAME=OrTools\n-ORTOOLS_TEST_DLL_NAME=$(ORTOOLS_DLL_NAME).Tests\n-ORTOOLS_FSHARP_DLL_NAME=$(ORTOOLS_DLL_NAME).FSharp\n-ORTOO...
C++
Apache License 2.0
google/or-tools
dotnet: use immediate expansion for variables
261,218
28.06.2018 17:46:41
-7,200
0ef0e6615831d04dd719059a9ee3222061844a2a
dotnet: split PROTOC Commands
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -179,26 +179,61 @@ $(OBJ_DIR)/swig/sat_csharp_wrap.$O: \\\n$(OBJ_OUT)$(OBJ_DIR)$Sswig$Ssat_csharp_wrap.$O\n# Protobufs\n-$(GEN_DIR)/com/google/ortools/constraintsolver/Searc...
C++
Apache License 2.0
google/or-tools
dotnet: split PROTOC Commands
261,218
28.06.2018 17:48:42
-7,200
3ac92d8c57a8e1b8676fca6dc99b8bcbaeef5e57
CLR_ORTOOLS_FSHARP_DLL_NAME depends on OR_TOOLS_LIBS just to be consistent with CLR_ORTOOLS_DLL_NAME
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -294,7 +294,8 @@ fsharp_dotnet: fsharportools\nfsharportools: $(BIN_DIR)/$(CLR_ORTOOLS_FSHARP_DLL_NAME)$(DLL)\n$(BIN_DIR)/$(CLR_ORTOOLS_FSHARP_DLL_NAME)$(DLL): \\\n- $(CLR_K...
C++
Apache License 2.0
google/or-tools
CLR_ORTOOLS_FSHARP_DLL_NAME depends on OR_TOOLS_LIBS just to be consistent with CLR_ORTOOLS_DLL_NAME
261,218
28.06.2018 17:51:41
-7,200
61c7e062cc26067f40876483f5f639c1067b157a
Rework target dependencies
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -48,16 +48,13 @@ DOTNET_LIB_DIR = LD_LIBRARY_PATH=\"$(LIB_DIR):$(LD_LIBRARY_PATH)\"\nendif\n.PHONY: csharp_dotnet # Build C# OR-Tools\n-csharp_dotnet: ortoolslibs csharporto...
C++
Apache License 2.0
google/or-tools
Rework target dependencies
261,218
28.06.2018 17:57:18
-7,200
ef37139ca905064fd7045c3f51a2f5e2ce1c834f
dotnet: rework testing
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -39,14 +39,6 @@ DOTNET_EXECUTABLE := $(shell $(WHICH) dotnet)\nendif\nendif\n-DOTNET_LIB_DIR :=\n-ifeq ($(PLATFORM),MACOSX)\n-DOTNET_LIB_DIR = DYLD_LIBRARY_PATH=\"$(LIB_DIR)...
C++
Apache License 2.0
google/or-tools
dotnet: rework testing
261,230
29.06.2018 18:29:19
-7,200
eb10fb9c7ac9e26280c140e1a9e519a9b81e2138
change LNS implementation in SAT; improve logging in SAT/FZ
[ { "change_type": "MODIFY", "old_path": "ortools/flatzinc/cp_model_fz_solver.cc", "new_path": "ortools/flatzinc/cp_model_fz_solver.cc", "diff": "@@ -976,8 +976,9 @@ void SolveFzWithCpModelProto(const fz::Model& fz_model,\nThreadPool pool(\"Parallel_FlatZinc_sat\", num_search_workers);\npool.StartWork...
C++
Apache License 2.0
google/or-tools
change LNS implementation in SAT; improve logging in SAT/FZ
261,218
02.07.2018 15:52:03
-7,200
99d4d0ad54c314972ca06c4fc0da99ab8139ca84
Support python 3.7 on MacOS MacOS brew just bump to python 3.7 Bump make 3.81 -> 4.2.1 on MacOS Travis CI Ubuntu CI use python3.6
[ { "change_type": "MODIFY", "old_path": ".travis/install.sh", "new_path": ".travis/install.sh", "diff": "@@ -61,13 +61,14 @@ if [ \"${BUILDER}\" == make ]; then\nfi\nelif [ \"${TRAVIS_OS_NAME}\" == osx ]; then\nif [ \"${DISTRO}\" == native ]; then\n- if [ \"${LANGUAGE}\" != cc ]; then\nbrew update;\n...
C++
Apache License 2.0
google/or-tools
Support python 3.7 on MacOS - MacOS brew just bump to python 3.7 - Bump make 3.81 -> 4.2.1 on MacOS Travis CI - Ubuntu CI use python3.6
261,218
03.07.2018 10:14:39
-7,200
a0ab4f10239bedf33be1c38931e0004e2ff1ba80
Travis-CI: Xcode 8.3.3 -> 9.4.1 {Xcode8.3.3, OSX_10.12} -> {Xcode9.4.1, OSX_10.13}
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -26,18 +26,22 @@ matrix:\nenv: BUILDER=make DISTRO=native LANGUAGE=dotnet\n- os: osx\n+ osx_image: xode9.4\nlanguage: cpp\ncompiler: clang\nenv: BUILDER=make DISTRO=native LANGUAGE=cc\n- os: osx\n+ osx_image...
C++
Apache License 2.0
google/or-tools
Travis-CI: Xcode 8.3.3 -> 9.4.1 - {Xcode8.3.3, OSX_10.12} -> {Xcode9.4.1, OSX_10.13}
261,218
03.07.2018 11:03:48
-7,200
fbda4a90449a9d32f3e9ec57f412311d6df6f0ea
Fix Python-swig.h cast
[ { "change_type": "MODIFY", "old_path": "ortools/base/python-swig.h", "new_path": "ortools/base/python-swig.h", "diff": "static inline int PyString_AsStringAndSize(PyObject* obj, char** buf,\nPy_ssize_t* psize) {\nif (PyUnicode_Check(obj)) {\n- *buf = PyUnicode_AsUTF8AndSize(obj, psize);\n+ *buf = co...
C++
Apache License 2.0
google/or-tools
Fix Python-swig.h cast
261,230
03.07.2018 16:40:21
-7,200
f6a054606359d50f3bf4dc40fc8bb6e40e2956d3
disable LP in sat/core
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_search.cc", "new_path": "ortools/sat/cp_model_search.cc", "diff": "@@ -302,6 +302,7 @@ SatParameters DiversifySearchParameters(const SatParameters& params,\ncase 4: { // Core based approach.\nnew_params.set_search_branching(SatParameters::...
C++
Apache License 2.0
google/or-tools
disable LP in sat/core
261,218
02.07.2018 11:21:12
-7,200
a9581bc480ce06b571e4c2292f3fdc6d1faaa0cf
make clean: Remove bin lib objs ortools/gen
[ { "change_type": "MODIFY", "old_path": "Makefile", "new_path": "Makefile", "diff": "@@ -94,6 +94,10 @@ test_all: test_cc test_python test_java test_dotnet\n.PHONY: clean_all\nclean_all: clean_cc clean_python clean_java clean_dotnet clean_compat\n+ -$(DELREC) $(BIN_DIR)\n+ -$(DELREC) $(LIB_DIR)\n+ -$...
C++
Apache License 2.0
google/or-tools
make clean: Remove bin lib objs ortools/gen
261,218
03.07.2018 15:01:21
-7,200
77c2aff0a6484bc9e786afd924a2c5ccbd24376d
dotnet: Remove temp_dotnet when cleaning
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -306,6 +306,7 @@ clean_dotnet:\n-$(DEL) $(BIN_DIR)$S$(CLR_ORTOOLS_DLL_NAME).*\n-$(DEL) $(BIN_DIR)$S$(CLR_ORTOOLS_FSHARP_DLL_NAME).*\n-$(DEL) $(CLR_KEYFILE)\n+ -$(DELREC) .$S...
C++
Apache License 2.0
google/or-tools
dotnet: Remove temp_dotnet when cleaning
261,218
03.07.2018 11:47:38
-7,200
a636eafb50cb24dbd61c871768bbbbba2c3bc9d5
Fix protobuf dynamic dir on MacOS
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.third_party.unix.mk", "new_path": "makefiles/Makefile.third_party.unix.mk", "diff": "@@ -218,9 +218,13 @@ PROTOBUF_PROTOC_INC = $(PROTOBUF_INC)\n# libprotobuf.a goes in a different subdirectory depending on the distribution\n# and architectu...
C++
Apache License 2.0
google/or-tools
Fix protobuf dynamic dir on MacOS
261,218
03.07.2018 21:13:33
-7,200
d1403ea5041154c8d503d74e9e0018561cd79494
Fix csharp_linear_solver deps need to depends on GLOP_DEPS
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -55,6 +55,7 @@ $(GEN_DIR)/ortools/linear_solver/linear_solver_csharp_wrap.cc: \\\n$(SRC_DIR)/ortools/linear_solver/csharp/linear_solver.i \\\n$(SRC_DIR)/ortools/base/base.i ...
C++
Apache License 2.0
google/or-tools
Fix csharp_linear_solver deps - need to depends on GLOP_DEPS
261,218
04.07.2018 09:05:22
-7,200
1f8c3bb655547f474b5ea56793ca36fe6e781f0d
Fix GEN_DIR -> GEN_PATH
[ { "change_type": "MODIFY", "old_path": "Makefile", "new_path": "Makefile", "diff": "@@ -106,7 +106,7 @@ clean_all: clean_cc clean_python clean_java clean_dotnet clean_compat\n-$(DELREC) $(BIN_DIR)\n-$(DELREC) $(LIB_DIR)\n-$(DELREC) $(OBJ_DIR)\n- -$(DELREC) $(GEN_DIR)\n+ -$(DELREC) $(GEN_PATH)\n@echo...
C++
Apache License 2.0
google/or-tools
Fix GEN_DIR -> GEN_PATH
261,218
04.07.2018 09:13:32
-7,200
ddf7995827408a163952ebeb01bb06408dddbf33
Make generate_deps.sh output identical everywhere By default MacOS and gLinux don't behave the same concerning '_' & '-' when sorting
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.gen.mk", "new_path": "makefiles/Makefile.gen.mk", "diff": "@@ -69,19 +69,19 @@ BASE_LIB_OBJS = \\\n$(OBJ_DIR)/base/random.$O \\\n$(OBJ_DIR)/base/recordio.$O \\\n$(OBJ_DIR)/base/split.$O \\\n- $(OBJ_DIR)/base/stringprintf.$O \\\n$(OBJ_DIR)/ba...
C++
Apache License 2.0
google/or-tools
Make generate_deps.sh output identical everywhere - By default MacOS and gLinux don't behave the same concerning '_' & '-' when sorting
261,218
04.07.2018 12:17:29
-7,200
0eabf6cea69792f6a6f094da9bb0861971635b45
Split SWIG_LIB_SUFFIX for Python and .NET (Fix
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.archive.mk", "new_path": "makefiles/Makefile.archive.mk", "diff": "@@ -146,7 +146,7 @@ endif\nnetstandard_archive: NET_STANDARD_EXAMPLES = $(wildcard examples/csharp/*.cs)\nnetstandard_archive: netstandard_example_archive\n$(COPY) bin$S$(NET...
C++
Apache License 2.0
google/or-tools
Split SWIG_LIB_SUFFIX for Python and .NET (Fix #742)
261,230
04.07.2018 13:31:00
-7,200
8e7db4fbda12933ea3fd37b193dc21c885ffddec
use std::atomic<bool> in external boolean for time limit
[ { "change_type": "MODIFY", "old_path": "examples/cpp/sat_runner.cc", "new_path": "examples/cpp/sat_runner.cc", "diff": "// See the License for the specific language governing permissions and\n// limitations under the License.\n+#include <atomic>\n#include <cstdio>\n#include <cstdlib>\n#include <memo...
C++
Apache License 2.0
google/or-tools
use std::atomic<bool> in external boolean for time limit
261,230
04.07.2018 19:23:01
-7,200
0aa597f12ff578200a0aa9747b01123c539f5f41
more diversity in //SAT; fix literal handling bug
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_presolve.cc", "new_path": "ortools/sat/cp_model_presolve.cc", "diff": "@@ -632,15 +632,15 @@ bool ExploitEquivalenceRelations(ConstraintProto* ct,\n[&changed, context](int* ref) {\nconst int var = PositiveRef(*ref);\nconst AffineRelation::...
C++
Apache License 2.0
google/or-tools
more diversity in //SAT; fix literal handling bug
261,218
18.06.2018 14:16:01
-7,200
710e753009d39027b1e19f5c42181dfe37d0886c
Fix python on centos LD_LIBRARY_PATH must look into lib64 folder too
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.python.mk", "new_path": "makefiles/Makefile.python.mk", "diff": "@@ -131,7 +131,7 @@ ifeq ($(SYSTEM),win)\nendif\nifeq ($(PLATFORM),LINUX)\ncd dependencies$Ssources$Sprotobuf-$(PROTOBUF_TAG)$Spython && \\\n- LD_LIBRARY_PATH=\"$(UNIX_PROTOBUF...
C++
Apache License 2.0
google/or-tools
Fix python on centos - LD_LIBRARY_PATH must look into lib64 folder too
261,218
04.07.2018 15:26:08
-7,200
89ff4225d1adcbe597830002b5b9a30716508a78
dotnet: move import lib to bin dir
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -282,7 +282,7 @@ $(BIN_DIR)/$(CLR_ORTOOLS_DLL_NAME)$(DLL): \\\n$(GEN_DIR)/com/google/ortools/sat \\\n$(BIN_DIR)\n$(DYNAMIC_LD) \\\n- $(LD_OUT)$(LIB_DIR)$S$(CLR_ORTOOLS_IMPOR...
C++
Apache License 2.0
google/or-tools
dotnet: move import lib to bin dir
261,218
05.07.2018 14:56:04
-7,200
f5f176d496dd92257713d8cf6dbf99ffd89840b1
cpp: Add library path variable
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.cpp.mk", "new_path": "makefiles/Makefile.cpp.mk", "diff": "@@ -176,6 +176,7 @@ ortoolslibs: third_party_check $(OR_TOOLS_LIBS)\n# Specific libraries for examples, and flatzinc.\nCVRPTW_LIBS = $(LIB_DIR)/$(LIB_PREFIX)cvrptw_lib.$L\n+CVRPTW_PA...
C++
Apache License 2.0
google/or-tools
cpp: Add library path variable
261,230
06.07.2018 15:11:17
-7,200
75173993f49b56896d18719251ad6288736cb3eb
fix/improve sat logging
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_presolve.cc", "new_path": "ortools/sat/cp_model_presolve.cc", "diff": "@@ -1630,6 +1630,12 @@ void PresolvePureSatPart(PresolveContext* context) {\n// Public API.\n// ========================================================================...
C++
Apache License 2.0
google/or-tools
fix/improve sat logging
261,280
09.07.2018 23:43:15
-36,000
d688d71cc097795356be755e971473568af8bb75
Update getting started link updates the link for getting started
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -113,7 +113,7 @@ We also provide experimental CMake support.<br>Please check the\nThe best way to learn how to use OR-Tools is to follow the tutorials in our\ndeveloper guide:\n-https://developers.google.com/opt...
C++
Apache License 2.0
google/or-tools
Update getting started link updates the link for getting started
261,218
06.07.2018 13:43:24
-7,200
3085fcbf81fe6e17f6b653fa444bc6ab20751403
cpp: add FLATZINC_PATH
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.cpp.mk", "new_path": "makefiles/Makefile.cpp.mk", "diff": "@@ -213,6 +213,7 @@ endif\nfaplibs: $(FAP_LIBS)\nFLATZINC_LIBS = $(LIB_DIR)/$(LIB_PREFIX)fz.$L\n+FLATZINC_PATH = $(subst /,$S,$(FLATZINC_LIBS))\nFLATZINC_DEPS = \\\n$(SRC_DIR)/ortool...
C++
Apache License 2.0
google/or-tools
cpp: add FLATZINC_PATH
261,218
06.07.2018 17:24:09
-7,200
ca6e69778839b363209c0db5b5eb9dcf957bfa23
cc: use MKDIR_P to create the install_cc root dir
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.cpp.mk", "new_path": "makefiles/Makefile.cpp.mk", "diff": "@@ -806,7 +806,7 @@ rcc: $(BIN_DIR)/$(basename $(notdir $(EX)))$E\n# ref: https://www.gnu.org/prep/standards/html_node/Directory-Variables.html#index-prefix\n# ref: https://www.gnu.o...
C++
Apache License 2.0
google/or-tools
cc: use MKDIR_P to create the install_cc root dir
261,218
06.07.2018 19:53:05
-7,200
648501745849217778caa49f7ea110c232f8c027
cc: Fix missing port/*.h in install_cc
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.cpp.mk", "new_path": "makefiles/Makefile.cpp.mk", "diff": "@@ -820,6 +820,7 @@ install_dirs:\n$(MKDIR) \"$(DESTDIR)$(prefix)$Sinclude$Sortools$Sgraph\"\n$(MKDIR) \"$(DESTDIR)$(prefix)$Sinclude$Sortools$Slinear_solver\"\n$(MKDIR) \"$(DESTDIR)...
C++
Apache License 2.0
google/or-tools
cc: Fix missing port/*.h in install_cc
261,218
10.07.2018 09:35:29
-7,200
042785c82db847f2c2c855de3effa67e9b7ca532
dotnet: reconcil files
[ { "change_type": "MODIFY", "old_path": "ortools/dotnet/OrTools/sat/CpModel.cs", "new_path": "ortools/dotnet/OrTools/sat/CpModel.cs", "diff": "@@ -686,10 +686,9 @@ public class CpModel\nS start, D duration, E end, ILiteral is_present, string name) {\nint i = is_present.GetIndex();\nreturn new Interva...
C++
Apache License 2.0
google/or-tools
dotnet: reconcil files
261,218
10.07.2018 14:11:24
-7,200
898e7bc055b64fcd9b69ef736d5d88a76133a4d9
dotnet: .Net example update
[ { "change_type": "MODIFY", "old_path": "examples/dotnet/OrTools.sln", "new_path": "examples/dotnet/OrTools.sln", "diff": "@@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00\n# Visual Studio 15\nVisualStudioVersion = 15.0.26124.0\nMinimumVisualStudioVersion = 15.0.26124.0\n-P...
C++
Apache License 2.0
google/or-tools
dotnet: .Net example update
261,221
10.07.2018 15:21:18
25,200
2a801ac2d08501ce443d808f91b636549efcde38
trival typo correction change vehicule to vehicle
[ { "change_type": "MODIFY", "old_path": "README.md", "new_path": "README.md", "diff": "@@ -30,7 +30,7 @@ The suite contains:\n* Wrappers around commercial and other open source solvers, including mixed\ninteger solvers;\n* Bin packing and knapsack algorithms;\n-* Algorithms for the Traveling Salesman...
C++
Apache License 2.0
google/or-tools
trival typo correction change vehicule to vehicle
261,230
12.07.2018 10:28:58
25,200
bafa699eda0b074866f7f36ef01120126a4e8025
improve sat presolve
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_checker.cc", "new_path": "ortools/sat/cp_model_checker.cc", "diff": "@@ -140,17 +140,17 @@ std::string ValidateArgumentReferencesInConstraint(const CpModelProto& model,\nreturn \"\";\n}\n-std::string ValidateLinearConstraint(const CpModelP...
C++
Apache License 2.0
google/or-tools
improve sat presolve
261,230
12.07.2018 17:50:11
25,200
797aed1f4d5a3b92148d2638e80765b861830e00
add hash utility
[ { "change_type": "MODIFY", "old_path": "ortools/base/hash.h", "new_path": "ortools/base/hash.h", "diff": "@@ -143,6 +143,16 @@ struct hash<std::array<T, N>> {\n};\n} // namespace std\n+namespace util_hash {\n+\n+inline uint64 Hash(uint64 num, uint64 c) {\n+ uint64 b = GG_ULONGLONG(0xe08c1d668b756f82...
C++
Apache License 2.0
google/or-tools
add hash utility
261,230
12.07.2018 17:51:11
25,200
83a2129026eef411a2f7c5c30c9cdcd88ae65ab1
initial code for symmetry detection
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.gen.mk", "new_path": "makefiles/Makefile.gen.mk", "diff": "@@ -1748,6 +1748,7 @@ SAT_DEPS = \\\n$(SRC_DIR)/ortools/sat/cp_model_presolve.h \\\n$(SRC_DIR)/ortools/sat/cp_model_search.h \\\n$(SRC_DIR)/ortools/sat/cp_model_solver.h \\\n+ $(SRC_...
C++
Apache License 2.0
google/or-tools
initial code for symmetry detection
261,218
12.07.2018 13:04:20
-7,200
ef71fe4b7da4b9962adc8881f8a0ba3cac4775de
mps_reader.cc: add direct dependency to glop/parameters.pb.h mps_reader.h depends on lp_data.h which depends on parameters.pb.h note: unfortunately gen_deps currently only look includes in foo.h and foo.cc for building foo.o
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.gen.mk", "new_path": "makefiles/Makefile.gen.mk", "diff": "@@ -1007,6 +1007,7 @@ $(OBJ_DIR)/lp_data/mps_reader.$O: \\\n$(SRC_DIR)/ortools/base/status.h \\\n$(SRC_DIR)/ortools/base/stringprintf.h \\\n$(SRC_DIR)/ortools/base/strutil.h \\\n+ $(...
C++
Apache License 2.0
google/or-tools
mps_reader.cc: add direct dependency to glop/parameters.pb.h mps_reader.h depends on lp_data.h which depends on parameters.pb.h note: unfortunately gen_deps currently only look includes in foo.h and foo.cc for building foo.o
261,218
10.07.2018 17:34:35
-7,200
59db6cb2d8b7fd7b595793c4a2b7164a42754a2a
cpp: Cleaning cpp rules Use pattern rules Remove dead code (CP_BINARIES and LP_BINARIES doesn't exist anymore) Expose fz and test_fz in help_cc Relayout makefile.cc.mk Move CVRP Problem rule before generic ones (needed for make < 4.0)
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.cpp.mk", "new_path": "makefiles/Makefile.cpp.mk", "diff": "@@ -23,7 +23,7 @@ endif\ncc: ortoolslibs ccexe\n.PHONY: test_cc # Test C++ OR-Tools using various examples.\ntest_cc: test_cc_examples\n-.PHONY: test_fz\n+.PHONY: test_fz # Test Flat...
C++
Apache License 2.0
google/or-tools
cpp: Cleaning cpp rules - Use pattern rules - Remove dead code (CP_BINARIES and LP_BINARIES doesn't exist anymore) - Expose fz and test_fz in help_cc - Relayout makefile.cc.mk - Move CVRP Problem rule before generic ones (needed for make < 4.0)
261,218
11.07.2018 15:26:33
-7,200
9536db9a981619cb3807821da0db74cc42452b8d
cc: Fix examples/tests/*.cc Add them to test_cc except issue173.cc which takes few dozen of seconds
[ { "change_type": "MODIFY", "old_path": "examples/tests/ac4r_table_test.cc", "new_path": "examples/tests/ac4r_table_test.cc", "diff": "// See the License for the specific language governing permissions and\n// limitations under the License.\n-\n-#include \"base/hash.h\"\n-#include \"base/map-util.h\"...
C++
Apache License 2.0
google/or-tools
cc: Fix examples/tests/*.cc - Add them to test_cc except issue173.cc which takes few dozen of seconds
261,218
12.07.2018 15:06:48
-7,200
54801f0e7cddd7a8d64d16658787449b5021b234
java: Add support for openjdk-1.11 aka java-11
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.port.mk", "new_path": "makefiles/Makefile.port.mk", "diff": "@@ -32,17 +32,21 @@ ifeq ($(SYSTEM),unix)\nPTRLENGTH = 64\nGUROBI_PLATFORM=linux64\nCANDIDATE_JDK_ROOTS = \\\n- /usr/local/buildtools/java/jdk-64 \\\n- /usr/lib/jvm/java-1.7.0-open...
C++
Apache License 2.0
google/or-tools
java: Add support for openjdk-1.11 aka java-11
261,218
10.07.2018 16:57:30
-7,200
0f2980dd559e4967d07f050cea4a34bdacf45b2b
dotnet: use D instead of DLL to be able to reuse DLL variable like EXE for C++ of JAR for Java example list
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.csharp.mk", "new_path": "makefiles/Makefile.csharp.mk", "diff": "@@ -46,7 +46,7 @@ endif\n.PHONY: clean_csharp # Clean C# output from previous build.\nclean_csharp: clean_dotnet_generated\n- -$(DEL) $(BIN_DIR)$S$(CLR_ORTOOLS_DLL_NAME)*$(DLL)...
C++
Apache License 2.0
google/or-tools
dotnet: use D instead of DLL to be able to reuse DLL variable like EXE for C++ of JAR for Java example list
261,218
12.07.2018 11:50:22
-7,200
d0c2e1748f5bc6b4cbb144d48a54db89f04c3727
dotnet: add --verbosity n[ormal] when running test. Be able to get the test list on console when command is run Add --no-build since we explicitly build just before
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -365,9 +365,11 @@ test_dotnet: dotnet\n-o \"..$S..$S..$S$(TEMP_DOTNET_TEST_DIR)\" \\\n\"ortools$Sdotnet$S$(ORTOOLS_FSHARP_TEST_DLL_NAME)$S$(ORTOOLS_FSHARP_TEST_DLL_NAME).fsp...
C++
Apache License 2.0
google/or-tools
dotnet: add --verbosity n[ormal] when running test. - Be able to get the test list on console when command is run - Add --no-build since we explicitly build just before
261,218
12.07.2018 17:33:45
-7,200
13b8633df4374a6f48ef61d007cf0a8506cdf0d8
dotnet: netcoreapp 2.0 -> 2.1 On netcoreapp2.0 seems to have some issue with the "current working dir".
[ { "change_type": "MODIFY", "old_path": ".travis/install.sh", "new_path": ".travis/install.sh", "diff": "@@ -32,7 +32,7 @@ function installdotnetsdk(){\n# Install dotnet sdk 2.1\nsudo apt-get install apt-transport-https &&\nsudo apt-get update -qq &&\n- sudo apt-get install -yqq dotnet-sdk-2.1.105\n+...
C++
Apache License 2.0
google/or-tools
dotnet: netcoreapp 2.0 -> 2.1 - On netcoreapp2.0 seems to have some issue with the "current working dir".
261,218
12.07.2018 10:44:58
-7,200
6cd212b442ee24951d006110cc976f27b6e13f1b
dotnet: rework CLR_KEYFILE management Move tools/netstandard to tools/dotnet Create Strong Name Keyfile using dotnet. Protect against space in DOTNET_BIN
[ { "change_type": "MODIFY", "old_path": ".gitignore", "new_path": ".gitignore", "diff": "@@ -82,9 +82,6 @@ cache/\n**/.vscode/*\n.DS_Store\n-tools/netstandard/CreateSigningKey/bin\n-tools/netstandard/CreateSigningKey/obj\n-\n**/.vs/*\n**/dotnet-test/*\n@@ -100,4 +97,8 @@ examples/dotnet/**/obj\nortoo...
C++
Apache License 2.0
google/or-tools
dotnet: rework CLR_KEYFILE management - Move tools/netstandard to tools/dotnet - Create Strong Name Keyfile using dotnet. - Protect against space in DOTNET_BIN