author
int64
658
755k
date
stringlengths
19
19
timezone
int64
-46,800
43.2k
hash
stringlengths
40
40
message
stringlengths
5
490
mods
list
language
stringclasses
20 values
license
stringclasses
3 values
repo
stringlengths
5
68
original_message
stringlengths
12
491
261,230
18.07.2019 11:36:10
25,200
d216e3caab9194fd5335aa42c43b0d446fd47d18
remove obsolete unignore
[ { "change_type": "MODIFY", "old_path": "ortools/linear_solver/python/linear_solver.i", "new_path": "ortools/linear_solver/python/linear_solver.i", "diff": "@@ -324,8 +324,8 @@ PY_CONVERT(MPVariable);\n%rename (LookupVariable) operations_research::MPSolver::LookupVariableOrNull;\n%unignore operations...
C++
Apache License 2.0
google/or-tools
remove obsolete unignore
261,230
18.07.2019 11:36:47
25,200
f32e012aedd588ed2f5dcd310e41f69c0a82bebd
works on CP-SAT and cuts
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model.proto", "new_path": "ortools/sat/cp_model.proto", "diff": "@@ -57,6 +57,11 @@ message IntegerVariableProto {\n// - max == domain.back();\n// - for all i < n : min_i <= max_i\n// - for all i < n-1 : max_i + 1 < min_{i+1}.\n+ //\n+ // Note t...
C++
Apache License 2.0
google/or-tools
works on CP-SAT and cuts
261,230
18.07.2019 14:08:14
25,200
1e15147884a79e6b3a6bfd35d6171544bbfe2c7c
polish scip support
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.third_party.unix.mk", "new_path": "makefiles/Makefile.third_party.unix.mk", "diff": "@@ -166,9 +166,9 @@ Makefile.local: makefiles/Makefile.third_party.$(SYSTEM).mk\n@echo \"# Define UNIX_SCIP_DIR to point to a installed version of SCIP to u...
C++
Apache License 2.0
google/or-tools
polish scip support
261,230
19.07.2019 10:40:52
25,200
5a9b682cb08daaefcc9e0e5fc3102836bffaa022
fix scip for linux
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.unix.mk", "new_path": "makefiles/Makefile.unix.mk", "diff": "@@ -127,7 +127,7 @@ ifeq ($(PLATFORM),LINUX)\nGLPK_LNK = $(UNIX_GLPK_DIR)/lib/libglpk.a\nendif\nifdef UNIX_SCIP_DIR\n- SCIP_LNK = $(UNIX_SCIP_DIR)/lib/libscipopt.a $(UNIX_SCIP_DIR)...
C++
Apache License 2.0
google/or-tools
fix scip for linux
261,230
19.07.2019 11:37:37
25,200
373f84ba5f5ae4ee20e7b0e4ecbecbc2ebc2b212
remove support for C# fz
[ { "change_type": "DELETE", "old_path": "examples/dotnet/csfz.cs", "new_path": null, "diff": "-// Copyright 2010-2018 Google LLC\n-// Licensed under the Apache License, Version 2.0 (the \"License\");\n-// you may not use this file except in compliance with the License.\n-// You may obtain a copy of t...
C++
Apache License 2.0
google/or-tools
remove support for C# fz
261,259
21.07.2019 03:11:38
-7,200
c5bc6e25190478dc67e55f13d7f5c5167c5959a2
Added AddHint method to CpModel
[ { "change_type": "MODIFY", "old_path": "ortools/sat/python/cp_model.py", "new_path": "ortools/sat/python/cp_model.py", "diff": "@@ -1510,6 +1510,10 @@ class CpModel(object):\nraise TypeError('TypeError: ' + str(x) +\n' is not a boolean variable')\n+ def AddHint(self, var, value):\n+ self.__model.sol...
C++
Apache License 2.0
google/or-tools
Added AddHint method to CpModel
261,230
22.07.2019 10:18:30
25,200
f14d7771bfb1e94e8a2f0ab5b8d12a30ffcb81ae
add scaling + offset option on the Cp/Routing log
[ { "change_type": "MODIFY", "old_path": "ortools/constraint_solver/constraint_solver.h", "new_path": "ortools/constraint_solver/constraint_solver.h", "diff": "@@ -2264,8 +2264,11 @@ class Solver {\n/// be used together).\nOptimizeVar* objective = nullptr;\nIntVar* variable = nullptr;\n- /// Objective...
C++
Apache License 2.0
google/or-tools
add scaling + offset option on the Cp/Routing log
261,230
22.07.2019 10:19:15
25,200
62eacbe785e12f05c56993b281543ee7537b1430
better presolve on fz int_le with abs
[ { "change_type": "MODIFY", "old_path": "ortools/flatzinc/presolve.cc", "new_path": "ortools/flatzinc/presolve.cc", "diff": "@@ -2399,6 +2399,7 @@ Presolver::RuleStatus Presolver::StoreAbs(Constraint* ct, std::string* log) {\n// Stores abs() map.\nlog->append(\"Store abs map\");\nabs_map_[ct->argumen...
C++
Apache License 2.0
google/or-tools
better presolve on fz int_le with abs
261,230
22.07.2019 11:03:53
25,200
15130a1ee91e7936c906170864958d3aaa10629c
fix bug in transitive reduction
[ { "change_type": "MODIFY", "old_path": "ortools/sat/clause.cc", "new_path": "ortools/sat/clause.cc", "diff": "@@ -397,20 +397,20 @@ bool BinaryImplicationGraph::CleanUpAndAddAtMostOnes(const int base_index) {\n// Process a new at most one.\n// It will be copied into buffer[local_start, local_end].\n...
C++
Apache License 2.0
google/or-tools
fix bug in transitive reduction
261,230
22.07.2019 11:10:30
25,200
738d23fe4aa69785a7ac281cab48287b479144ef
direct gurobi proto solve; support SOS in gurobi proto solve
[ { "change_type": "MODIFY", "old_path": "ortools/linear_solver/gurobi_proto_solver.cc", "new_path": "ortools/linear_solver/gurobi_proto_solver.cc", "diff": "#include <limits>\n#include <memory>\n+#include <numeric>\n#include <string>\n#include <vector>\n@@ -63,6 +64,39 @@ util::Status CreateEnvironme...
C++
Apache License 2.0
google/or-tools
direct gurobi proto solve; support SOS in gurobi proto solve
261,230
24.07.2019 16:46:19
25,200
de01aacae4d3d0b069d77635f4029627867928fa
do not use temp files for local params with SCIP
[ { "change_type": "MODIFY", "old_path": "ortools/linear_solver/scip_interface.cc", "new_path": "ortools/linear_solver/scip_interface.cc", "diff": "#include <string>\n#include <vector>\n+#include \"absl/strings/str_format.h\"\n#include \"absl/types/optional.h\"\n#include \"ortools/base/canonical_error...
C++
Apache License 2.0
google/or-tools
do not use temp files for local params with SCIP
261,230
24.07.2019 16:48:02
25,200
97069fe44faa5375e2d57aa7febde0e099c40536
one more canonical error
[ { "change_type": "MODIFY", "old_path": "ortools/base/canonical_errors.h", "new_path": "ortools/base/canonical_errors.h", "diff": "@@ -30,6 +30,10 @@ inline Status UnimplementedError(const std::string& message) {\nreturn Status(error::NOT_IMPLEMENTED, message);\n}\n+inline Status FailedPreconditionEr...
C++
Apache License 2.0
google/or-tools
one more canonical error
261,230
24.07.2019 16:49:10
25,200
d4c1816733a5c6c6219466d0db81363da787fbcf
revamp gurobi direct proto solve
[ { "change_type": "ADD", "old_path": null, "new_path": "ortools/linear_solver/gurobi_environment.cc", "diff": "+// Copyright 2010-2018 Google LLC\n+// Licensed under the Apache License, Version 2.0 (the \"License\");\n+// you may not use this file except in compliance with the License.\n+// You may o...
C++
Apache License 2.0
google/or-tools
revamp gurobi direct proto solve
261,230
24.07.2019 16:49:38
25,200
454f7c37e06c04d6667b2a00712d628fe5c29046
rewrite LNS/Random usage
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_lns.cc", "new_path": "ortools/sat/cp_model_lns.cc", "diff": "#include \"ortools/sat/cp_model_utils.h\"\n#include \"ortools/sat/linear_programming_constraint.h\"\n#include \"ortools/sat/rins.h\"\n-#include \"ortools/util/random_engine.h\"\n...
C++
Apache License 2.0
google/or-tools
rewrite LNS/Random usage
261,230
26.07.2019 09:46:33
25,200
6448bfd041594937f662fa056b812d400d43591f
fix crash in post solve/lns/MIPLIB
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_presolve.cc", "new_path": "ortools/sat/cp_model_presolve.cc", "diff": "@@ -1170,6 +1170,9 @@ void CpModelPresolver::DivideLinearByGcd(ConstraintProto* ct) {\n}\nconst Domain rhs = ReadDomainFromProto(ct->linear());\nFillDomainInProto(rhs.I...
C++
Apache License 2.0
google/or-tools
fix crash in post solve/lns/MIPLIB
261,230
26.07.2019 09:46:53
25,200
43b7faa516e8a84d492c067bcd3417e29ca2073c
improve linear relaxation for breaks in routing
[ { "change_type": "MODIFY", "old_path": "ortools/constraint_solver/routing_lp_scheduling.cc", "new_path": "ortools/constraint_solver/routing_lp_scheduling.cc", "diff": "#include <numeric>\n+#include \"absl/container/flat_hash_set.h\"\n#include \"absl/time/time.h\"\n+#include \"ortools/base/integral_t...
C++
Apache License 2.0
google/or-tools
improve linear relaxation for breaks in routing
261,230
26.07.2019 21:58:30
25,200
eff25e7251297a358c4dc252dc7a52815894e33c
update minizinc docker
[ { "change_type": "MODIFY", "old_path": "tools/docker/Makefile", "new_path": "tools/docker/Makefile", "diff": "@@ -307,7 +307,7 @@ distclean_python: clean_python\n##########################\n## MINIZINC CHALLENGE ##\n##########################\n-MZN_TAG=or-tools-minizinc-challenge:2018v3\n+MZN_TAG=or...
C++
Apache License 2.0
google/or-tools
update minizinc docker
261,230
28.07.2019 13:11:29
25,200
f75654c6617d4c05d50caf3a547dbefb938e4afd
support nonshifted elements
[ { "change_type": "MODIFY", "old_path": "ortools/flatzinc/checker.cc", "new_path": "ortools/flatzinc/checker.cc", "diff": "@@ -158,7 +158,7 @@ bool CheckArrayIntElement(\nreturn element == target;\n}\n-bool CheckArrayIntElementNoOffset(\n+bool CheckArrayIntElementNonShifted(\nconst Constraint& ct,\nc...
C++
Apache License 2.0
google/or-tools
support nonshifted elements
261,230
28.07.2019 13:39:23
25,200
20203377ba448ccf9b7f066818b942f1ced84c8a
wip _imp constraints in fz
[ { "change_type": "MODIFY", "old_path": "ortools/flatzinc/mznlib_sat/redefinitions-2.0.mzn", "new_path": "ortools/flatzinc/mznlib_sat/redefinitions-2.0.mzn", "diff": "@@ -42,3 +42,53 @@ include \"nosets.mzn\";\n% Include strings redefinitions\ninclude \"nostrings.mzn\"\n+\n+% Half-Reified constraints...
C++
Apache License 2.0
google/or-tools
wip _imp constraints in fz
261,230
29.07.2019 17:55:07
25,200
5bcfb2b8d7c8ab9abe34c9e106a43e5f236529b8
add slack in lp relaxation
[ { "change_type": "MODIFY", "old_path": "ortools/constraint_solver/routing_lp_scheduling.cc", "new_path": "ortools/constraint_solver/routing_lp_scheduling.cc", "diff": "@@ -193,11 +193,14 @@ bool CumulBoundsPropagator::InitializeArcsAndBounds(\nconst int next = next_accessor(node);\nconst int64 trans...
C++
Apache License 2.0
google/or-tools
add slack in lp relaxation
261,230
30.07.2019 15:07:11
25,200
b21c2b8ef1bcc86e0addcb8114db44add2131d12
support QP in SCIP/Gurobi
[ { "change_type": "MODIFY", "old_path": "ortools/linear_solver/gurobi_proto_solver.cc", "new_path": "ortools/linear_solver/gurobi_proto_solver.cc", "diff": "@@ -80,6 +80,48 @@ int AddSosConstraint(const MPSosConstraint& sos_cst, GRBmodel* gurobi_model,\n/*beg=*/begins.data(), /*ind=*/tmp_variables->d...
C++
Apache License 2.0
google/or-tools
support QP in SCIP/Gurobi
261,230
30.07.2019 15:07:33
25,200
e278b2543164990961ce2a911969f709e44f619d
limit iterations on presolve
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_presolve.cc", "new_path": "ortools/sat/cp_model_presolve.cc", "diff": "@@ -188,6 +188,7 @@ ABSL_MUST_USE_RESULT bool PresolveContext::SetLiteralToTrue(int lit) {\nvoid PresolveContext::UpdateRuleStats(const std::string& name) {\nstats_by_r...
C++
Apache License 2.0
google/or-tools
limit iterations on presolve
261,230
30.07.2019 17:19:24
25,200
798b280d1f16350a9f565fe1630c797db94dd322
fix epsilon in test
[ { "change_type": "MODIFY", "old_path": "examples/tests/SatSolverTests.cs", "new_path": "examples/tests/SatSolverTests.cs", "diff": "@@ -210,11 +210,10 @@ namespace Google.OrTools.Tests {\n{1, 1}, {2, 4}, {3, 9}, {4, 16}, {5, 25} };\nmodel.AddAllowedAssignments(new IntVar[] {delta, squaredDelta}, tup...
C++
Apache License 2.0
google/or-tools
fix epsilon in test
261,230
05.08.2019 12:37:21
25,200
0ccae6b657b5bad666af28cca1f63557720bfe87
protobuf 3.8.0 -> 3.9.0
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.third_party.unix.mk", "new_path": "makefiles/Makefile.third_party.unix.mk", "diff": "@@ -21,7 +21,7 @@ PROTOC_BINARY := $(shell $(WHICH) ${UNIX_PROTOC_BINARY})\n# Tags of dependencies to checkout.\nGFLAGS_TAG = 2.2.2\nGLOG_TAG = 0.4.0\n-PROT...
C++
Apache License 2.0
google/or-tools
protobuf 3.8.0 -> 3.9.0
261,230
05.08.2019 23:19:45
25,200
c63183aab4083803c2e01c865c508802e9bd264e
store more search info in CP-SAT
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model.proto", "new_path": "ortools/sat/cp_model.proto", "diff": "@@ -521,6 +521,7 @@ enum CpSolverStatus {\n//\n// TODO(user): support returning multiple solutions. Look at the Stubby\n// streaming API as we probably wants to get them as they ar...
C++
Apache License 2.0
google/or-tools
store more search info in CP-SAT
261,230
06.08.2019 11:52:52
25,200
fb47a87b144d94c89f73cd3f463946d5539266ae
add makefile entry for xpress
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.gen.mk", "new_path": "makefiles/Makefile.gen.mk", "diff": "@@ -2683,6 +2683,7 @@ LP_LIB_OBJS = \\\n$(OBJ_DIR)/linear_solver/model_validator.$O \\\n$(OBJ_DIR)/linear_solver/scip_interface.$O \\\n$(OBJ_DIR)/linear_solver/scip_proto_solver.$O \...
C++
Apache License 2.0
google/or-tools
add makefile entry for xpress
261,230
06.08.2019 15:55:10
25,200
ae76a6ad794b269926fcd8074879936439304ea4
rewrite glop internals
[ { "change_type": "MODIFY", "old_path": "ortools/glop/rank_one_update.h", "new_path": "ortools/glop/rank_one_update.h", "diff": "@@ -169,20 +169,19 @@ class RankOneUpdateFactorization {\n}\n// y->is_non_zero is always all false before and after this code.\n- y->is_non_zero.resize(y->values.size(), fa...
C++
Apache License 2.0
google/or-tools
rewrite glop internals
261,230
06.08.2019 15:56:27
25,200
c36d1d7dc164a6ccdbe3e101bca185da2004e10c
more type of constraints in the linear solver proto, support in SCIP
[ { "change_type": "MODIFY", "old_path": "ortools/linear_solver/linear_solver.proto", "new_path": "ortools/linear_solver/linear_solver.proto", "diff": "@@ -110,6 +110,9 @@ message MPGeneralConstraintProto {\nMPIndicatorConstraint indicator_constraint = 2;\nMPSosConstraint sos_constraint = 3;\nMPQuadra...
C++
Apache License 2.0
google/or-tools
more type of constraints in the linear solver proto, support in SCIP
261,230
06.08.2019 15:56:48
25,200
6c8cedcf22e5e98b1cac42552e5cc495dbfd00e1
add new info in cp-sat solving
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model.proto", "new_path": "ortools/sat/cp_model.proto", "diff": "@@ -521,6 +521,7 @@ enum CpSolverStatus {\n//\n// TODO(user): support returning multiple solutions. Look at the Stubby\n// streaming API as we probably wants to get them as they ar...
C++
Apache License 2.0
google/or-tools
add new info in cp-sat solving
261,230
09.08.2019 11:53:20
25,200
a39b544fde39f56b0892ffec80b9f4e34d148492
continue rearchitecture LS and routing
[ { "change_type": "MODIFY", "old_path": "ortools/constraint_solver/constraint_solver.h", "new_path": "ortools/constraint_solver/constraint_solver.h", "diff": "@@ -732,7 +732,6 @@ class Solver {\ntypedef std::function<int64(const IntVar* v, int64 id)> VariableValueSelector;\ntypedef std::function<bool...
C++
Apache License 2.0
google/or-tools
continue rearchitecture LS and routing
261,230
09.08.2019 11:53:35
25,200
6e5b4a93205956e17214d18c8cd33f7de74f8484
more constraints in linear solver
[ { "change_type": "MODIFY", "old_path": "ortools/linear_solver/gurobi_proto_solver.cc", "new_path": "ortools/linear_solver/gurobi_proto_solver.cc", "diff": "@@ -122,6 +122,67 @@ int AddQuadraticConstraint(const MPGeneralConstraintProto& gen_cst,\nreturn GRB_OK;\n}\n+\n+int AddAndConstraint(const MPGe...
C++
Apache License 2.0
google/or-tools
more constraints in linear solver
261,230
09.08.2019 11:54:04
25,200
f87f82e1bfd1e005dfd90b2c43229dbd21425f85
cleanup flatzinc
[ { "change_type": "MODIFY", "old_path": "ortools/flatzinc/checker.cc", "new_path": "ortools/flatzinc/checker.cc", "diff": "@@ -615,7 +615,7 @@ bool CheckIntLtImp(const Constraint& ct,\nconst int64 left = Eval(ct.arguments[0], evaluator);\nconst int64 right = Eval(ct.arguments[1], evaluator);\nconst b...
C++
Apache License 2.0
google/or-tools
cleanup flatzinc
261,230
09.08.2019 11:54:32
25,200
205a3f91b8dd117dec03344d91f882f5cf363539
experimental CP-SAT work on encoding
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_loader.cc", "new_path": "ortools/sat/cp_model_loader.cc", "diff": "@@ -244,6 +244,42 @@ void CpModelMapping::CreateVariables(const CpModelProto& model_proto,\nm->GetOrCreate<IntegerEncoder>()->FullyEncodeVariable(integers_[i]);\n}\n+ for (...
C++
Apache License 2.0
google/or-tools
experimental CP-SAT work on encoding
261,230
09.08.2019 15:07:14
25,200
37707517f158ca52b371632c2111516299846e5c
less full encoding
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_loader.cc", "new_path": "ortools/sat/cp_model_loader.cc", "diff": "@@ -72,12 +72,32 @@ bool IsSmallEnoughToAlwaysEncode(int var, CpModelMapping* mapping,\nreturn ub - lb <= 64; // Arbitrary limit value.\n}\n-bool IsEqCst(const LinearConstr...
C++
Apache License 2.0
google/or-tools
less full encoding
261,230
09.08.2019 20:55:32
25,200
414e3449900097a71343a7655919b09aecc3262d
improve full encoding logic
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_loader.cc", "new_path": "ortools/sat/cp_model_loader.cc", "diff": "@@ -661,20 +661,25 @@ class FullEncodingFixedPointComputer {\ninteger_encoder_->VariableIsFullyEncoded(variable);\n}\n- void FullyEncode(ConstraintIndex ct, int v) {\n+ voi...
C++
Apache License 2.0
google/or-tools
improve full encoding logic
261,220
12.08.2019 11:39:45
14,400
142ef44c46bed01a9997d5aca778268f4e8278d6
dotnet.header.html.in Separate header file for dotnet.
[ { "change_type": "ADD", "old_path": null, "new_path": "tools/doc/dotnet.header.html.in", "diff": "+<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n+<html xmlns=\"http://www.w3.org/1999/xhtml\">\n+ <head>\n+ <title>OR-Tool...
C++
Apache License 2.0
google/or-tools
dotnet.header.html.in Separate header file for dotnet.
261,220
12.08.2019 11:42:37
14,400
7ea937dd3445470596d2b250175fabe87cea1250
Create java.header.html.in Separate header file for Java.
[ { "change_type": "ADD", "old_path": null, "new_path": "tools/doc/java.header.html.in", "diff": "+<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n+<html xmlns=\"http://www.w3.org/1999/xhtml\">\n+ <head>\n+ <title>OR-Tools<...
C++
Apache License 2.0
google/or-tools
Create java.header.html.in Separate header file for Java.
261,220
12.08.2019 11:47:42
14,400
e9999eb3fec5cea22b4114996c923878f4e9efcd
Create cpp.header.html.in Separate header file for C++.
[ { "change_type": "ADD", "old_path": null, "new_path": "tools/cpp.header.html.in", "diff": "+<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n+<html xmlns=\"http://www.w3.org/1999/xhtml\">\n+ <head>\n+ <title>OR-Tools</titl...
C++
Apache License 2.0
google/or-tools
Create cpp.header.html.in Separate header file for C++.
261,220
12.08.2019 11:50:32
14,400
e1a2bd055278cc014fda1fbd2203b89fd3c9f267
Update gen_ref_doc.py Update gen_ref_doc to take separate header files for C++, DotNet, and Java.
[ { "change_type": "MODIFY", "old_path": "tools/doc/gen_ref_doc.py", "new_path": "tools/doc/gen_ref_doc.py", "diff": "@@ -11,11 +11,11 @@ def main(version_number):\n\"\"\"\nsections = create_section_data()\ndoxy_tmp = 'tools/doc/tmp.doxy'\n- headerfile = 'tools/doc/ortools.header.html.in'\nheader_tmp ...
C++
Apache License 2.0
google/or-tools
Update gen_ref_doc.py Update gen_ref_doc to take separate header files for C++, DotNet, and Java.
261,220
12.08.2019 12:00:13
14,400
b7d22629c1bc1ca02cb347cfa5a3e0bb887daab6
Update DoxygenLayout.xml.in Remove Main Page and Pages tabs.
[ { "change_type": "MODIFY", "old_path": "tools/doc/DoxygenLayout.xml.in", "new_path": "tools/doc/DoxygenLayout.xml.in", "diff": "<!-- Generated by doxygen 1.8.15 -->\n<!-- Navigation index tabs for HTML output -->\n<navindex>\n- <tab type=\"mainpage\" visible=\"yes\" title=\"\"/>\n- <tab type=\"pages...
C++
Apache License 2.0
google/or-tools
Update DoxygenLayout.xml.in Remove Main Page and Pages tabs.
261,230
12.08.2019 23:14:49
25,200
5a17221f48f8202f3047be0394d9ded0eb26c078
fix ignored doxygen layout file
[ { "change_type": "RENAME", "old_path": "tools/doc/DoxygenLayout.xml.in", "new_path": "tools/doc/DoxygenLayout.xml", "diff": "<!-- Layout definition for a class page -->\n<class>\n- <briefdescription visible=\"no\"/>\n+ <detaileddescription title=\"\"/>\n<includes visible=\"no\"/>\n<inheritancegraph ...
C++
Apache License 2.0
google/or-tools
fix ignored doxygen layout file
261,230
20.08.2019 15:33:28
25,200
7eda747aae70a56febaa21995b52fbefd9958875
improve lp relaxation for the routing library
[ { "change_type": "MODIFY", "old_path": "ortools/constraint_solver/routing_lp_scheduling.cc", "new_path": "ortools/constraint_solver/routing_lp_scheduling.cc", "diff": "@@ -78,6 +78,65 @@ bool GetCumulBoundsWithOffset(const IntVar& cumul_var, int64 cumul_offset,\nreturn true;\n}\n+// Finds the pickup...
C++
Apache License 2.0
google/or-tools
improve lp relaxation for the routing library
261,230
20.08.2019 15:33:47
25,200
db2d441ca2f711b86a7bad468f710eb9219888f4
more work on GLOP internals
[ { "change_type": "MODIFY", "old_path": "ortools/glop/lu_factorization.cc", "new_path": "ortools/glop/lu_factorization.cc", "diff": "@@ -30,10 +30,10 @@ LuFactorization::LuFactorization()\nvoid LuFactorization::Clear() {\nSCOPED_TIME_STAT(&stats_);\n- lower_.Reset(RowIndex(0));\n- upper_.Reset(RowInd...
C++
Apache License 2.0
google/or-tools
more work on GLOP internals
261,230
22.08.2019 13:16:02
-7,200
49e9410a6be2650fed2d939009d540cb3b3bca3e
add LinearExpr.Term() API; improve internals
[ { "change_type": "MODIFY", "old_path": "ortools/com/google/ortools/sat/LinearExpr.java", "new_path": "ortools/com/google/ortools/sat/LinearExpr.java", "diff": "@@ -42,4 +42,9 @@ public interface LinearExpr {\n}\nreturn new ScalProd(variables, tmp);\n}\n+\n+ /** Creates a linear term (var * coefficie...
C++
Apache License 2.0
google/or-tools
add LinearExpr.Term() API; improve internals
261,230
27.08.2019 15:10:36
-7,200
28cb8de52b7a03499c43a2aa9be254ed2d7f3765
CP-SAT loader improvements
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_loader.cc", "new_path": "ortools/sat/cp_model_loader.cc", "diff": "@@ -748,13 +748,14 @@ void FullEncodingFixedPointComputer::ComputeFixedPoint() {\nProcessConstraint(ct_index);\n}\n- int num_variables_fully_encoded_by_heuristics = 0;\n// ...
C++
Apache License 2.0
google/or-tools
CP-SAT loader improvements
261,230
02.09.2019 11:32:05
-7,200
1387c63869f74d9eb01e27ced9c5356c2a65efcd
update linear solver code
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.gen.mk", "new_path": "makefiles/Makefile.gen.mk", "diff": "@@ -128,6 +128,7 @@ UTIL_DEPS = \\\n$(SRC_DIR)/ortools/util/functions_swig_test_helpers.h \\\n$(SRC_DIR)/ortools/util/graph_export.h \\\n$(SRC_DIR)/ortools/util/integer_pq.h \\\n+ $(...
C++
Apache License 2.0
google/or-tools
update linear solver code
261,230
02.09.2019 11:32:24
-7,200
73c2a575a37913d063b98da798612ef32135b463
improve filters in the routing library
[ { "change_type": "MODIFY", "old_path": "ortools/constraint_solver/routing.cc", "new_path": "ortools/constraint_solver/routing.cc", "diff": "@@ -175,21 +175,19 @@ bool DimensionFixedTransitsEqualTransitEvaluators(\nclass SetCumulsFromLocalDimensionCosts : public DecisionBuilder {\npublic:\nSetCumulsF...
C++
Apache License 2.0
google/or-tools
improve filters in the routing library
261,230
02.09.2019 12:00:34
-7,200
88054f79e687174ea67ebc95dca7c06b35659b06
big bang on CP-SAT: remove element and inverse constraints, expand them
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_expand.cc", "new_path": "ortools/sat/cp_model_expand.cc", "diff": "@@ -415,9 +415,66 @@ void ExpandElement(ConstraintProto* ct, PresolveContext* context) {\nconst int size = element.vars_size();\nif (!context->IntersectDomainWith(index_ref...
C++
Apache License 2.0
google/or-tools
big bang on CP-SAT: remove element and inverse constraints, expand them
261,230
02.09.2019 16:18:36
-7,200
e7302881acbe83054213f5ebd1840d72bed85768
implement small interleaved mode
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_search.cc", "new_path": "ortools/sat/cp_model_search.cc", "diff": "@@ -285,7 +285,58 @@ SatParameters DiversifySearchParameters(const SatParameters& params,\nnew_params.set_use_lns_only(false);\nint index = worker_id;\n- if (cp_model.has_o...
C++
Apache License 2.0
google/or-tools
implement small interleaved mode
261,230
02.09.2019 21:55:24
-7,200
60f3f28f4015bcb46a19862ea7335b377f4fa428
polish CP-SAT code
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_expand.cc", "new_path": "ortools/sat/cp_model_expand.cc", "diff": "@@ -374,6 +374,10 @@ void ExpandInverse(ConstraintProto* ct, PresolveContext* context) {\n}\n// Add the \"full-encoding\" clauses for better presolving.\n+ //\n+ // TODO(us...
C++
Apache License 2.0
google/or-tools
polish CP-SAT code
261,230
03.09.2019 15:43:06
-7,200
a7a1b70dde93e49277be923fe345b67aa62569f5
improve LP relaxation
[ { "change_type": "MODIFY", "old_path": "ortools/constraint_solver/routing.cc", "new_path": "ortools/constraint_solver/routing.cc", "diff": "@@ -214,6 +214,14 @@ class SetCumulsFromLocalDimensionCosts : public DecisionBuilder {\nbreak;\n}\n}\n+ // Setting the cumuls of path start/end first is more ef...
C++
Apache License 2.0
google/or-tools
improve LP relaxation
261,230
03.09.2019 15:43:26
-7,200
68eaab91e996132884e20af481cc28e03216f440
default free search model in flatzinc CP-SAT
[ { "change_type": "MODIFY", "old_path": "ortools/flatzinc/cp_model_fz_solver.cc", "new_path": "ortools/flatzinc/cp_model_fz_solver.cc", "diff": "@@ -998,6 +998,10 @@ void SolveFzWithCpModelProto(const fz::Model& fz_model,\n}\nif (p.use_free_search) {\nm.parameters.set_search_branching(SatParameters::...
C++
Apache License 2.0
google/or-tools
default free search model in flatzinc CP-SAT
261,230
03.09.2019 15:44:24
-7,200
a6dd04cc18e95ce8fa91b315248e1d428ed4ceb7
fix bugs, add limited memory interleaved mode
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_lns.cc", "new_path": "ortools/sat/cp_model_lns.cc", "diff": "@@ -26,17 +26,18 @@ namespace operations_research {\nnamespace sat {\nNeighborhoodGeneratorHelper::NeighborhoodGeneratorHelper(\n- int id, const CpModelProto& model_proto, SatPar...
C++
Apache License 2.0
google/or-tools
fix bugs, add limited memory interleaved mode
261,230
03.09.2019 23:30:41
-7,200
3d7a5c0945b9c2a73df321ba8c5d0fc4b2f4d7e5
some memory optimization
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_expand.cc", "new_path": "ortools/sat/cp_model_expand.cc", "diff": "@@ -419,19 +419,20 @@ void ExpandElement(ConstraintProto* ct, PresolveContext* context) {\nconst int size = element.vars_size();\nif (!context->IntersectDomainWith(index_re...
C++
Apache License 2.0
google/or-tools
some memory optimization
261,230
04.09.2019 13:22:51
-7,200
e1b32efb5af2fc6b486ca98528ef3f985f3e4b44
add mypy support if present fix
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.python.mk", "new_path": "makefiles/Makefile.python.mk", "diff": "@@ -25,6 +25,10 @@ else # UNIX\nPYTHON_COMPILER ?= python$(UNIX_PYTHON_VER)\nPYTHON_EXECUTABLE := $(shell which $(PYTHON_COMPILER))\nSET_PYTHONPATH = PYTHONPATH=$(OR_TOOLS_PYTH...
C++
Apache License 2.0
google/or-tools
add mypy support if present fix #1547
261,230
04.09.2019 14:03:22
-7,200
ff7d826718c9f8f2670e40bde691d75fb9d8e80f
support solver specific parameters in gurobi proto solver
[ { "change_type": "MODIFY", "old_path": "ortools/linear_solver/gurobi_proto_solver.cc", "new_path": "ortools/linear_solver/gurobi_proto_solver.cc", "diff": "@@ -50,6 +50,34 @@ inline util::Status GurobiCodeToUtilStatus(int error_code,\nsource_file, source_line, statement, GRBgeterrormsg(env)));\n}\n+...
C++
Apache License 2.0
google/or-tools
support solver specific parameters in gurobi proto solver
261,230
04.09.2019 14:03:47
-7,200
43cf8100abe41125226a473ba97a80fd5e6f37aa
fix portable compilation
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_utils.h", "new_path": "ortools/sat/cp_model_utils.h", "diff": "@@ -96,7 +96,12 @@ void FillDomainInProto(const Domain& domain, ProtoWithDomain* proto) {\n// Reads a Domain from the domain field of a proto.\ntemplate <typename ProtoWithDoma...
C++
Apache License 2.0
google/or-tools
fix portable compilation
261,230
04.09.2019 14:06:14
-7,200
5d68b8d74f7bad303816c1c9bae4497eba29eefd
enable interleave search for flatzinc
[ { "change_type": "MODIFY", "old_path": "ortools/flatzinc/cp_model_fz_solver.cc", "new_path": "ortools/flatzinc/cp_model_fz_solver.cc", "diff": "@@ -998,7 +998,8 @@ void SolveFzWithCpModelProto(const fz::Model& fz_model,\n}\nif (p.use_free_search) {\nm.parameters.set_search_branching(SatParameters::A...
C++
Apache License 2.0
google/or-tools
enable interleave search for flatzinc
261,230
04.09.2019 15:02:12
-7,200
cdc5800bef3a3cfbb8cf86b57831283cbf2c0955
speedup domain
[ { "change_type": "MODIFY", "old_path": "ortools/util/sorted_interval_list.cc", "new_path": "ortools/util/sorted_interval_list.cc", "diff": "@@ -414,15 +414,53 @@ Domain Domain::InverseMultiplicationBy(const int64 coeff) const {\nreturn result;\n}\n-// TODO(user): This could be computed more efficien...
C++
Apache License 2.0
google/or-tools
speedup domain
261,230
04.09.2019 15:20:45
-7,200
439cebb9c8af0e7a55cf1283b2df48bac40aeb2e
polish xpress support
[ { "change_type": "MODIFY", "old_path": "ortools/linear_solver/csharp/linear_solver.i", "new_path": "ortools/linear_solver/csharp/linear_solver.i", "diff": "@@ -95,6 +95,8 @@ CONVERT_VECTOR(operations_research::MPVariable, MPVariable)\n%unignore operations_research::MPSolver::GUROBI_MIXED_INTEGER_PRO...
C++
Apache License 2.0
google/or-tools
polish xpress support
261,230
04.09.2019 15:31:46
-7,200
c3d7946461e2dd0d3783fc4fb150c372ad67adf6
more work on glop
[ { "change_type": "MODIFY", "old_path": "ortools/glop/lu_factorization.cc", "new_path": "ortools/glop/lu_factorization.cc", "diff": "@@ -307,12 +307,13 @@ void LuFactorization::RightSolveUWithNonZeros(ScatteredColumn* x) const {\n// If non-zeros is non-empty, we use an hypersparse solve. Note that if...
C++
Apache License 2.0
google/or-tools
more work on glop
261,230
04.09.2019 15:32:11
-7,200
f47f18bdcbc73e8b177fe0a867f38d51d8477cf9
tune reduced memory strategies
[ { "change_type": "MODIFY", "old_path": "ortools/flatzinc/cp_model_fz_solver.cc", "new_path": "ortools/flatzinc/cp_model_fz_solver.cc", "diff": "@@ -998,7 +998,6 @@ void SolveFzWithCpModelProto(const fz::Model& fz_model,\n}\nif (p.use_free_search) {\nm.parameters.set_search_branching(SatParameters::A...
C++
Apache License 2.0
google/or-tools
tune reduced memory strategies
261,255
04.09.2019 13:04:58
-7,200
a03f7f849eeb4ca75ea5755999c494c8999a674b
Remove runtime identifier in native dll name and rely on the runtime to find the appropriate library at runtime. Removed lib and runtime suffix in DllImport (PInvoke).
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.dotnet.mk", "new_path": "makefiles/Makefile.dotnet.mk", "diff": "@@ -68,11 +68,12 @@ endif\nDOTNET_ORTOOLS_SNK := $(BIN_DIR)/or-tools.snk\nDOTNET_ORTOOLS_SNK_PATH := $(subst /,$S,$(DOTNET_ORTOOLS_SNK))\nOR_TOOLS_ASSEMBLY_NAME := Google.OrToo...
C++
Apache License 2.0
google/or-tools
Remove runtime identifier in native dll name and rely on the runtime to find the appropriate library at runtime. Removed lib and runtime suffix in DllImport (PInvoke).
261,230
07.09.2019 16:16:56
-7,200
f7b37ac7ec3b9ca8355d84805651fe4f1a827d88
prepare for 7.4
[ { "change_type": "MODIFY", "old_path": "Version.txt", "new_path": "Version.txt", "diff": "OR_TOOLS_MAJOR=7\n-OR_TOOLS_MINOR=3\n+OR_TOOLS_MINOR=4\n#PRE_RELEASE=YES\n" }, { "change_type": "MODIFY", "old_path": "tools/doc/gen_ref_doc.py", "new_path": "tools/doc/gen_ref_doc.py", "dif...
C++
Apache License 2.0
google/or-tools
prepare for 7.4
261,230
07.09.2019 16:19:02
-7,200
9c54cf5beafa64eda4fc8ccbedc70e33860ff34b
final minizinc release
[ { "change_type": "MODIFY", "old_path": "tools/docker/Makefile", "new_path": "tools/docker/Makefile", "diff": "@@ -307,7 +307,7 @@ distclean_python: clean_python\n##########################\n## MINIZINC CHALLENGE ##\n##########################\n-MZN_TAG=or-tools-minizinc-challenge:2019v2\n+MZN_TAG=or...
C++
Apache License 2.0
google/or-tools
final minizinc release
261,259
07.09.2019 17:10:16
-7,200
47d453697088bebb48e676756ae6a7b60e9aefa3
Update hinting examples
[ { "change_type": "MODIFY", "old_path": "ortools/sat/doc/model.md", "new_path": "ortools/sat/doc/model.md", "diff": "@@ -107,10 +107,14 @@ def SolutionHintingSampleSat():\nmodel.Maximize(x + 2 * y + 3 * z)\n# Solution hinting: x <- 1, y <- 2\n- model.Proto().solution_hint.vars.append(x.Index())\n- mo...
C++
Apache License 2.0
google/or-tools
Update hinting examples
261,230
07.09.2019 22:03:06
-7,200
879108cfee7985300ff7798f29e1bb4afdf9e914
remove support for python 2.7
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -10,10 +10,6 @@ matrix:\ndist: xenial\ncompiler: gcc\nenv: BUILDER=make LANGUAGE=cc\n- - os: linux\n- dist: xenial\n- compiler: gcc\n- env: BUILDER=make LANGUAGE=python2\n- os: linux\ndist: xenial\ncompiler:...
C++
Apache License 2.0
google/or-tools
remove support for python 2.7
261,259
08.09.2019 02:39:19
-7,200
6697eb18c23d0d881aad419ad9b0516c7def78a4
Add addHint in java, port hinting sample
[ { "change_type": "MODIFY", "old_path": "ortools/com/google/ortools/sat/CpModel.java", "new_path": "ortools/com/google/ortools/sat/CpModel.java", "diff": "@@ -952,6 +952,12 @@ public final class CpModel {\nreturn addCumulative(intervals, toLongArray(demands), capacity);\n}\n+ /** Adds hinting to a va...
C++
Apache License 2.0
google/or-tools
Add addHint in java, port hinting sample
261,259
08.09.2019 22:57:47
-7,200
7445311467302c28c4634c6be4a14b1331f4ddc9
Add AddHint to cpp and csharp, port hinting samples
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.cpp.mk", "new_path": "makefiles/Makefile.cpp.mk", "diff": "@@ -401,6 +401,7 @@ test_cc_sat_samples: \\\nrcc_reified_sample_sat \\\nrcc_search_for_all_solutions_sample_sat \\\nrcc_simple_sat_program \\\n+ rcc_solution_hinting_sample_sat \\\nr...
C++
Apache License 2.0
google/or-tools
Add AddHint to cpp and csharp, port hinting samples
261,230
09.09.2019 15:08:59
-7,200
aa64d1736ad105693e4041af01459d62d42e41b0
faster filters for breaks
[ { "change_type": "MODIFY", "old_path": "ortools/constraint_solver/routing.h", "new_path": "ortools/constraint_solver/routing.h", "diff": "@@ -3311,6 +3311,8 @@ std::vector<IntVarLocalSearchFilter*> MakeCumulFilters(\nIntVarLocalSearchFilter* MakePathCumulFilter(const RoutingDimension& dimension,\nbo...
C++
Apache License 2.0
google/or-tools
faster filters for breaks
261,230
09.09.2019 15:09:12
-7,200
7c14cc2eb3b1d7b2ef31556d6b67a79d26626ec1
bump flex version used
[ { "change_type": "MODIFY", "old_path": "ortools/flatzinc/parser.tab.cc", "new_path": "ortools/flatzinc/parser.tab.cc", "diff": "// See the License for the specific language governing permissions and\n// limitations under the License.\n-/* A Bison parser, made by GNU Bison 3.2.2. */\n+/* A Bison pars...
C++
Apache License 2.0
google/or-tools
bump flex version used
261,230
09.09.2019 15:09:22
-7,200
cf02e57227e0614ee5728f57ceb750003079bf9d
more sparse computation
[ { "change_type": "MODIFY", "old_path": "ortools/glop/dual_edge_norms.cc", "new_path": "ortools/glop/dual_edge_norms.cc", "diff": "@@ -28,6 +28,10 @@ bool DualEdgeNorms::NeedsBasisRefactorization() {\nvoid DualEdgeNorms::Clear() { recompute_edge_squared_norms_ = true; }\n+void DualEdgeNorms::ResizeOn...
C++
Apache License 2.0
google/or-tools
more sparse computation
261,230
09.09.2019 15:09:36
-7,200
9ecda7657e0677c308492c5c0c71b2df92d83b0f
add index constraints for gurobi proto solve
[ { "change_type": "MODIFY", "old_path": "ortools/linear_solver/gurobi_proto_solver.cc", "new_path": "ortools/linear_solver/gurobi_proto_solver.cc", "diff": "@@ -78,6 +78,39 @@ util::Status SetSolverSpecificParameters(const std::string& parameters,\nreturn util::OkStatus();\n}\n+int AddIndicatorConstr...
C++
Apache License 2.0
google/or-tools
add index constraints for gurobi proto solve
261,230
09.09.2019 15:10:26
-7,200
b435a301ccda5c467113019bcc070a4a8ab6aa4e
search experiments and tuning in CP-SAT; add expansion of automaton by default
[ { "change_type": "MODIFY", "old_path": "ortools/sat/BUILD", "new_path": "ortools/sat/BUILD", "diff": "@@ -128,6 +128,7 @@ cc_library(\n\":integer\",\n\":integer_search\",\n\":model\",\n+ \":probing\",\n\":util\",\n\"//ortools/base\",\n\"//ortools/base:cleanup\",\n@@ -527,6 +528,7 @@ cc_library(\ndep...
C++
Apache License 2.0
google/or-tools
search experiments and tuning in CP-SAT; add expansion of automaton by default
261,230
11.09.2019 12:49:29
-7,200
9fba0771ccaee339540bde4d97590b32cdca10c7
small improvements in filters
[ { "change_type": "MODIFY", "old_path": "ortools/constraint_solver/routing.h", "new_path": "ortools/constraint_solver/routing.h", "diff": "@@ -2810,9 +2810,9 @@ class GlobalCheapestInsertionFilteredDecisionBuilder\nAdjustablePriorityQueue<NodeEntry>* priority_queue,\nstd::vector<NodeEntries>* node_en...
C++
Apache License 2.0
google/or-tools
small improvements in filters
261,230
11.09.2019 12:49:59
-7,200
e5d010490ed84407ed405c2cffc2fd9e3bfc475f
improve fz to sat encoding
[ { "change_type": "MODIFY", "old_path": "ortools/flatzinc/cp_model_fz_solver.cc", "new_path": "ortools/flatzinc/cp_model_fz_solver.cc", "diff": "#include \"absl/strings/str_split.h\"\n#include \"absl/synchronization/mutex.h\"\n#include \"google/protobuf/text_format.h\"\n+#include \"ortools/base/itera...
C++
Apache License 2.0
google/or-tools
improve fz to sat encoding
261,230
11.09.2019 12:50:11
-7,200
124a5a0a78fcf662d026c1ae9faf813bff0d548e
polish scip interface
[ { "change_type": "MODIFY", "old_path": "ortools/linear_solver/scip_interface.cc", "new_path": "ortools/linear_solver/scip_interface.cc", "diff": "@@ -174,6 +174,10 @@ util::Status SCIPInterface::CreateSCIP() {\n}\n// Default clock type. We use wall clock time because getting CPU user seconds\n// inv...
C++
Apache License 2.0
google/or-tools
polish scip interface
261,230
11.09.2019 12:50:25
-7,200
fff236d8005574e34b61ae92440df3a638873753
work on CP-SAT internals
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_expand.cc", "new_path": "ortools/sat/cp_model_expand.cc", "diff": "@@ -556,15 +556,18 @@ void LinkLiteralsAndValues(\nCHECK(target_encoding.contains(v));\nconst int lit = gtl::FindOrDie(target_encoding, v);\nvalue_literals_per_target_value...
C++
Apache License 2.0
google/or-tools
work on CP-SAT internals
261,230
12.09.2019 09:21:19
-7,200
87485feaccce9dff706bb6e39759bf658cb53efe
support swig 4.0.1 in doxygen generation
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.third_party.unix.mk", "new_path": "makefiles/Makefile.third_party.unix.mk", "diff": "@@ -765,6 +765,9 @@ SWIG_VERSION = $(shell $(SWIG_BINARY) -version | grep Version | cut -d \" \" -f 3)\nifeq (\"$(SWIG_VERSION)\",\"4.0.0\")\nSWIG_DOXYGEN =...
C++
Apache License 2.0
google/or-tools
support swig 4.0.1 in doxygen generation
261,230
12.09.2019 10:10:22
-7,200
832acb838af0afb816c2004cc37521a2df30b9bc
more loading methods
[ { "change_type": "MODIFY", "old_path": "ortools/lp_data/model_reader.cc", "new_path": "ortools/lp_data/model_reader.cc", "diff": "namespace operations_research {\nnamespace glop {\n-bool LoadLinearProgramFromModelOrRequest(const std::string& input_file_path,\n- LinearProgram* linear_program) {\n+boo...
C++
Apache License 2.0
google/or-tools
more loading methods
261,230
12.09.2019 10:11:02
-7,200
2dbf3895f2519a9fae2d60ebf8f6bbeb790b2124
remove more usage of 0LL and 1LL; reformat code
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model.cc", "new_path": "ortools/sat/cp_model.cc", "diff": "@@ -734,7 +734,8 @@ void CpModelBuilder::AddDecisionStrategy(\n}\nvoid CpModelBuilder::AddHint(IntVar var, int64 value) {\n- cp_model_.mutable_solution_hint()->add_vars(GetOrCreateIntege...
C++
Apache License 2.0
google/or-tools
remove more usage of 0LL and 1LL; reformat code
261,230
12.09.2019 10:52:29
-7,200
3a631191a14dce8c833f3a11d72ee4db84fbf161
polish sat recipies
[ { "change_type": "MODIFY", "old_path": "ortools/sat/doc/model.md", "new_path": "ortools/sat/doc/model.md", "diff": "* [Introduction](#introduction)\n* [Solution hinting](#solution-hinting)\n* [Python code](#python-code)\n+ * [C code](#c-code)\n+ * [Java code](#java-code)\n+ * [C# code](#c-code-1)\n<...
C++
Apache License 2.0
google/or-tools
polish sat recipies
261,230
13.09.2019 21:22:35
-7,200
f1c46101af4396f366c8333a6b6d7a47f45477a2
fix nuget dependencies
[ { "change_type": "MODIFY", "old_path": "ortools/dotnet/Google.OrTools/Google.OrTools.csproj.in", "new_path": "ortools/dotnet/Google.OrTools/Google.OrTools.csproj.in", "diff": "<ItemGroup>\n- <PackageReference Include=\"Google.Protobuf\" Version=\"3.9.0\"/>\n+ <PackageReference Include=\"Google.Proto...
C++
Apache License 2.0
google/or-tools
fix nuget dependencies
261,230
18.09.2019 10:54:22
-7,200
3ea4cde63ee44937838d91f6e33a3f31ab2196d6
re-incorporate proto files in the main assembly
[ { "change_type": "MODIFY", "old_path": "ortools/dotnet/Google.OrTools/Google.OrTools.csproj.in", "new_path": "ortools/dotnet/Google.OrTools/Google.OrTools.csproj.in", "diff": "<Error Text=\"You must locally 'dotnet pack' at least one Google.OrTools.runtime.{rid} Project.\" Condition=\"!Exists('@(Run...
C++
Apache License 2.0
google/or-tools
re-incorporate proto files in the main assembly
261,230
18.09.2019 17:31:39
-7,200
7fe7534ee3c41858584388cc5a2e624bd3704f7f
more work on routing filters
[ { "change_type": "MODIFY", "old_path": "ortools/constraint_solver/constraint_solver.h", "new_path": "ortools/constraint_solver/constraint_solver.h", "diff": "@@ -2709,6 +2709,8 @@ class Solver {\nconst std::vector<LocalSearchFilter*>& filters);\n/// Local Search Filters\n+ LocalSearchFilter* MakeAcc...
C++
Apache License 2.0
google/or-tools
more work on routing filters
261,230
18.09.2019 17:32:06
-7,200
938e4eaf5907656b02751e5588a069b7b6a4383f
add getter on glop
[ { "change_type": "MODIFY", "old_path": "ortools/glop/preprocessor.h", "new_path": "ortools/glop/preprocessor.h", "diff": "@@ -954,6 +954,8 @@ class ShiftVariableBoundsPreprocessor : public Preprocessor {\nbool Run(LinearProgram* lp) final;\nvoid RecoverSolution(ProblemSolution* solution) const final...
C++
Apache License 2.0
google/or-tools
add getter on glop
261,220
23.09.2019 11:19:03
14,400
c9f1fc3bf2315447cec1c1228d66a794ca1b56e0
Update linear_programming_example.py Change the lower limit on the variables to 0 to match the versions in the other languages, and to agree with the doc.
[ { "change_type": "MODIFY", "old_path": "ortools/linear_solver/samples/linear_programming_example.py", "new_path": "ortools/linear_solver/samples/linear_programming_example.py", "diff": "@@ -27,10 +27,10 @@ def LinearProgrammingExample():\npywraplp.Solver.GLOP_LINEAR_PROGRAMMING)\n# [END solver]\n- #...
C++
Apache License 2.0
google/or-tools
Update linear_programming_example.py Change the lower limit on the variables to 0 to match the versions in the other languages, and to agree with the doc.
261,230
27.09.2019 17:01:54
-7,200
d0081e54093d74a1962346f2dcaa8705e7b6c57a
more work on CP-SAT internals
[ { "change_type": "MODIFY", "old_path": "ortools/sat/cp_model_expand.cc", "new_path": "ortools/sat/cp_model_expand.cc", "diff": "@@ -446,12 +446,9 @@ void ExpandElement(ConstraintProto* ct, PresolveContext* context) {\n}\nconst int64 value = var_domain.Min();\n-\n- if (!gtl::ContainsKey(constant_var_...
C++
Apache License 2.0
google/or-tools
more work on CP-SAT internals
261,230
30.09.2019 16:34:08
14,400
f66e52cc71ef4a0dcd9538eeb9a1c840d25da8c3
remove delay signing
[ { "change_type": "MODIFY", "old_path": "ortools/dotnet/Google.OrTools.runtime.linux-x64/Google.OrTools.runtime.linux-x64.csproj.in", "new_path": "ortools/dotnet/Google.OrTools.runtime.linux-x64/Google.OrTools.runtime.linux-x64.csproj.in", "diff": "<!-- Signing -->\n<AssemblyOriginatorKeyFile>../../....
C++
Apache License 2.0
google/or-tools
remove delay signing
261,230
04.10.2019 04:53:48
14,400
21a7b0510e7d82ae051df79678ad2e75985f9de4
fix python makefile
[ { "change_type": "MODIFY", "old_path": "makefiles/Makefile.python.mk", "new_path": "makefiles/Makefile.python.mk", "diff": "@@ -1079,7 +1079,7 @@ $(PYPI_ARCHIVE_TEMP_DIR)/ortools/ortools/data: $(PYDATA_LIBS) | $(PYPI_ARCHIVE_T\n$(COPY) $(GEN_PATH)$Sortools$Sdata$S*.py* $(PYPI_ARCHIVE_TEMP_DIR)$Sorto...
C++
Apache License 2.0
google/or-tools
fix python makefile
261,230
11.10.2019 15:26:25
-7,200
6755c61315c7bb382a558b27cdff7ea2d5970c9c
update docker to support ubuntu 19.10
[ { "change_type": "MODIFY", "old_path": "tools/docker/Makefile", "new_path": "tools/docker/Makefile", "diff": "@@ -128,7 +128,7 @@ export/python: | export\n#################\n# Currently supported distro\n-DISTROS = centos-7 debian-9 ubuntu-19.04 ubuntu-18.04 ubuntu-16.04\n+DISTROS = centos-7 debian-...
C++
Apache License 2.0
google/or-tools
update docker to support ubuntu 19.10
261,230
13.10.2019 05:12:43
-7,200
e04a608039be375b7b74d619b9b45af0a6582144
add support for netstandard2.1
[ { "change_type": "MODIFY", "old_path": "ortools/dotnet/Google.OrTools.runtime.linux-x64/Google.OrTools.runtime.linux-x64.csproj.in", "new_path": "ortools/dotnet/Google.OrTools.runtime.linux-x64/Google.OrTools.runtime.linux-x64.csproj.in", "diff": "<Project Sdk=\"Microsoft.NET.Sdk\">\n<PropertyGroup>...
C++
Apache License 2.0
google/or-tools
add support for netstandard2.1
261,230
14.10.2019 11:05:58
-7,200
d2fc853b1f2d5411f30f771a9df5062945d7c49a
fix dotnet on windows
[ { "change_type": "MODIFY", "old_path": "ortools/dotnet/Google.OrTools.runtime.win-x64/Google.OrTools.runtime.win-x64.csproj.in", "new_path": "ortools/dotnet/Google.OrTools.runtime.win-x64/Google.OrTools.runtime.win-x64.csproj.in", "diff": "<Project Sdk=\"Microsoft.NET.Sdk\">\n<PropertyGroup>\n<Outpu...
C++
Apache License 2.0
google/or-tools
fix dotnet on windows
261,230
14.10.2019 14:39:32
-7,200
1cc486c0dec0fa55a2c311707aff509182c6f143
tweak dotnet on mac osx
[ { "change_type": "MODIFY", "old_path": ".travis/install.sh", "new_path": ".travis/install.sh", "diff": "@@ -73,8 +73,8 @@ if [ \"${BUILDER}\" == make ]; then\necho 'travis_fold:end:python3'\nelif [ \"${LANGUAGE}\" == dotnet ]; then\necho 'travis_fold:start:dotnet'\n- #brew tap caskroom/cask\n- brew ...
C++
Apache License 2.0
google/or-tools
tweak dotnet on mac osx
261,230
15.10.2019 12:36:13
-7,200
0ac724e44361075048aaaf4cedb5859f46bacea1
try linuxppc64le support
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -80,6 +80,14 @@ matrix:\n- os: linux\ndist: xenial\nenv: BUILDER=bazel\n+ - os: linux-ppc64le\n+ dist: xenial\n+ compiler: gcc\n+ env: BUILDER=make LANGUAGE=cc\n+ - os: linux-ppc64le\n+ dist: xenial\n+ compi...
C++
Apache License 2.0
google/or-tools
try linuxppc64le support
261,230
15.10.2019 12:41:13
-7,200
dc76cf745bdf2ca334a2b0f3c32781d25e35ed12
more work on ppcle
[ { "change_type": "MODIFY", "old_path": ".travis/install.sh", "new_path": ".travis/install.sh", "diff": "@@ -49,6 +49,26 @@ if [ \"${BUILDER}\" == make ]; then\ninstalldotnetsdk\necho 'travis_fold:end:dotnet'\nfi\n+ elif [ \"${TRAVIS_OS_NAME}\" == linux-ppc64le ]; then\n+ echo 'travis_fold:start:c++'...
C++
Apache License 2.0
google/or-tools
more work on ppcle
261,230
15.10.2019 15:49:33
-7,200
cbd5ad631d569b722a6ff35841a7889f2bff8672
bump appveyor dotnet image to vs2019 to support dotnet core 3
[ { "change_type": "MODIFY", "old_path": ".appveyor.yml", "new_path": ".appveyor.yml", "diff": "@@ -20,7 +20,7 @@ environment:\nBUILDER: make\nLANGUAGE: java\n- - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017\n+ - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019\nBUILDER: make\nLANGUAGE: dotnet\n# CM...
C++
Apache License 2.0
google/or-tools
bump appveyor dotnet image to vs2019 to support dotnet core 3
261,230
17.10.2019 11:05:39
-7,200
5e12866d09593b584c6c631f603775d23b265b7e
more test on appveyor
[ { "change_type": "MODIFY", "old_path": ".appveyor.yml", "new_path": ".appveyor.yml", "diff": "@@ -43,7 +43,8 @@ cache:\nbefore_build:\n- git config --global user.email \"ci@appveyor.com\"\n- git config --global user.name \"CI\"\n- - if \"$call \"C:\\Program Files (x86)\\Microsoft Visual Studio\\%VS_...
C++
Apache License 2.0
google/or-tools
more test on appveyor
261,230
17.10.2019 12:40:18
-7,200
f219bf5c796dae328432a6635e58482165d54ece
try arm on travis
[ { "change_type": "MODIFY", "old_path": ".travis.yml", "new_path": ".travis.yml", "diff": "@@ -71,14 +71,23 @@ matrix:\npackages:\n- bazel\nenv: BUILDER=bazel\n- - os: linux-ppc64le\n+ # Power architecture\n+ - os: linux\n+ arch: ppc64le\ndist: bionic\ncompiler: gcc\nenv: BUILDER=make LANGUAGE=cc PPC...
C++
Apache License 2.0
google/or-tools
try arm on travis
261,230
18.10.2019 14:39:35
-7,200
beb59fb20d44f325e12e27915a54f7df0471aa56
improve LPData
[ { "change_type": "MODIFY", "old_path": "ortools/lp_data/lp_data.cc", "new_path": "ortools/lp_data/lp_data.cc", "diff": "@@ -232,11 +232,12 @@ void LinearProgram::SetVariableName(ColIndex col, const std::string& name) {\n}\nvoid LinearProgram::SetVariableType(ColIndex col, VariableType type) {\n- if ...
C++
Apache License 2.0
google/or-tools
improve LPData