Commit Graph

103 Commits

Author SHA1 Message Date
Mizux Seiha
35d896ce55 linear_solver: Enable multithread in integer programming example 2021-06-23 14:36:49 +02:00
Mizux Seiha
dd326d8e76 Fix AssignmentMip.cs 2021-05-31 09:59:52 +02:00
Mizux Seiha
7dbe27fe99 mip_var_array.py: Add missing [END solver] tag 2021-05-31 01:29:27 +02:00
Mizux Seiha
9ac8b51edf linear_solver: Fix cond in sample 2021-05-10 14:43:25 +02:00
Mizux Seiha
6ae19c9b5b Bump version: 8.2 -> 9.0 2021-04-27 10:56:39 +02:00
Corentin Le Molgat
7531dd9625 python: Add shebang to programs 2021-04-16 00:23:35 +02:00
Mizux Seiha
8bb54b04ef Bump Copyright to 2021
FYI:
find ortools \( -type d -name .git -prune \) -o -type f -print0 | xargs -0 sed -i 's/\(Copyright 2010\)-2018/\1-2021/g'
2021-04-01 21:00:53 +02:00
Mizux Seiha
6faa70e7dc Use CreateSolver everywhere and check SCIP (Fix #2395) 2021-03-31 16:05:32 +02:00
Hugues Evrard
08abcea750 Avoid leaking the MPSolver object in some samples
In samples using MPSolver::CreateSolver(), track the resulting solver
with a std::unique_ptr to avoid leaking it.

Fix #2411
2021-02-25 08:58:41 +01:00
Mizux Seiha
817914d94a Bump version 8.1 -> 8.2 2021-01-26 11:34:47 +01:00
Corentin Le Molgat
c9caf3d914 bazel: Update sample build 2020-12-21 16:24:32 +01:00
Corentin Le Molgat
e8f6e86afd Update java samples 2020-12-21 16:24:32 +01:00
Corentin Le Molgat
b3a506cc74 linear_solver: Fixup lp samples 2020-12-16 18:16:31 +01:00
Corentin Le Molgat
2e101330ed linear_solver: Remove call to nodes() in lp samples 2020-12-16 17:56:36 +01:00
Corentin Le Molgat
91ce7e63de Remove branch-and-bound log from lp samples 2020-12-16 11:52:28 +01:00
Mizux Seiha
39f6d99cdd Update LinearProgrammingExample 2020-12-09 16:46:40 +01:00
Mizux Seiha
f247fd13fd Fixup samples 2020-12-07 17:31:24 +01:00
Mizux Seiha
1e25c371c9 Fixup Basic Example 2020-12-07 16:16:23 +01:00
Mizux Seiha
0e615d5ad9 linear_solver: Add missing import region tag 2020-12-07 16:00:32 +01:00
Mizux Seiha
9ca0a26ac2 linear_solver: Cleanup examples 2020-12-07 14:57:58 +01:00
Mizux Seiha
8522d2cc2b linear_solver: Add Basic_example 2020-12-07 14:57:42 +01:00
Laurent Perron
a139418f17 update samples, fix SAT backend overflow in hints 2020-11-30 18:58:49 +01:00
Corentin Le Molgat
4cd85e08c4 Export Google update 2020-11-18 16:11:32 +01:00
Mizux Seiha
b39fadfda5 Update csproj 2020-11-18 15:21:52 +01:00
Laurent Perron
4ececbe448 update python code, remove __future__ imports, remove six, use absl-py for flags, update examples 2020-11-18 10:50:14 +01:00
Mizux Seiha
379a985dde bazel: Run samples as test 2020-11-16 11:16:08 +01:00
Corentin Le Molgat
a9385fc3d2 Format all .Net using Microsoft style 2020-11-03 10:15:53 +01:00
Corentin Le Molgat
b5e70663c7 Format using clang-format 11 2020-10-29 14:26:41 +01:00
Corentin Le Molgat
e4caaf96bc format file forcing the left alignment 2020-10-29 14:25:39 +01:00
Laurent Perron
6467dc69b0 reformat the code; [CP-SAT] add dominated columns presolve 2020-10-28 13:42:51 +01:00
Mizux Seiha
335cf3df3d format all C# files 2020-10-26 18:41:49 +01:00
Mizux Seiha
f087564d84 cpp: Format all files in ortools 2020-09-23 12:06:10 +02:00
Mizux Seiha
a4a5f64801 cmake: Add dotnet samples 2020-09-22 19:09:22 +02:00
Mizux Seiha
aa73e901b4 cmake: Refactor sample tests 2020-09-19 17:21:50 +02:00
Mizux Seiha
d220ef5397 cmake(python): add samples 2020-09-17 19:21:09 +02:00
Mizux Seiha
9d8609940a java: Fix samples using SCIP 2020-09-17 17:16:12 +02:00
Mizux Seiha
fffa7d6911 cmake: Add java samples (#202) 2020-09-15 21:54:50 +02:00
Mizux Seiha
c6420ba8e6 make(java): Migrate samples to maven (#202)
- Factorise makefile code using advanced make function
- Use the Loader in samples
2020-09-13 00:15:03 +02:00
Mizux Seiha
fff7b6ad8b cmake: update samples and examples management 2020-09-13 00:04:50 +02:00
Mizux Seiha
96263307e9 Bump csproj 2020-09-01 16:01:05 +02:00
Mizux Seiha
e87596c787 bazel: Add all samples 2020-08-28 17:52:08 +02:00
Mizux Seiha
c3b7a68984 cmake: Add cpp samples 2020-08-24 17:31:12 +02:00
Mizux Seiha
1112493183 cmake: Fixup linear_solver samples 2020-08-22 16:37:24 +02:00
Mizux Seiha
82d7b641e9 cmake: Add linear_solver C++ samples 2020-08-22 16:37:24 +02:00
Laurent Perron
55cedb4b4b remove name from MPSolver.CreateSolver API; simplify underlying code 2020-08-18 17:16:10 +02:00
Mizux Seiha
37fb709548 Bump version to v7.8 2020-07-22 11:05:48 +02:00
Laurent Perron
2022071171 polish examples and samples 2020-06-26 09:35:26 +02:00
Laurent Perron
eda229c521 polish linear solver samples 2020-06-25 11:14:37 +02:00
Laurent Perron
d6ecea46ad experimental support for dynamic loading of gurobi; add MPSolver.CreateSolver() factory method for non C++ languages to check correctly installed linear solver backends and licenses when needed; port all non C++ examples 2020-06-24 18:11:12 +02:00
Paul
a805cd63e5 Add region tags for program and import. 2020-06-06 22:19:10 +02:00