View | Details | Raw Unified | Return to bug 275887 | Differences between
and this patch

Collapse All | Expand All

(-)b/math/or-tools/Makefile (-3 / +5 lines)
Lines 1-7 Link Here
1
PORTNAME=	or-tools
1
PORTNAME=	or-tools
2
DISTVERSIONPREFIX=	v
2
DISTVERSIONPREFIX=	v
3
DISTVERSION=	9.5
3
DISTVERSION=	9.8
4
PORTREVISION=	7
5
CATEGORIES=	math
4
CATEGORIES=	math
6
5
7
MAINTAINER=	yuri@FreeBSD.org
6
MAINTAINER=	yuri@FreeBSD.org
Lines 40-46 CXXFLAGS+= -DABSL_LEGACY_THREAD_ANNOTATIONS Link Here
40
CONFIGURE_ENV=	UNIX_CBC_DIR=${LOCALBASE} UNIX_CLP_DIR=${LOCALBASE}
39
CONFIGURE_ENV=	UNIX_CBC_DIR=${LOCALBASE} UNIX_CLP_DIR=${LOCALBASE}
41
40
42
OPTIONS_DEFINE=		DOCS FLATZINC SCIP
41
OPTIONS_DEFINE=		DOCS FLATZINC SCIP
43
OPTIONS_DEFAULT=	FLATZINC #SCIP
42
#OPTIONS_DEFAULT=	FLATZINC SCIP
44
OPTIONS_SUB=		yes
43
OPTIONS_SUB=		yes
45
44
46
FLATZINC_DESC=		Build FlatZinc - MiniZinc interface
45
FLATZINC_DESC=		Build FlatZinc - MiniZinc interface
Lines 55-60 PORTDOCS= * Link Here
55
54
56
# 3 tests are known to fail, see https://github.com/google/or-tools/issues/3429
55
# 3 tests are known to fail, see https://github.com/google/or-tools/issues/3429
57
56
57
post-patch:
58
	@${REINPLACE_CMD} -e '17,19d' ${WRKSRC}/ortools/base/logging.h
59
58
post-install:
60
post-install:
59
	@${FIND} ${STAGEDIR}${PREFIX} -type d -empty -delete
61
	@${FIND} ${STAGEDIR}${PREFIX} -type d -empty -delete
60
62
(-)b/math/or-tools/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1672576120
1
TIMESTAMP = 1699869085
2
SHA256 (google-or-tools-v9.5_GH0.tar.gz) = 57f81b94949d35dc042690db3fa3f53245cffbf6824656e1a03f103a3623c939
2
SHA256 (google-or-tools-v9.8_GH0.tar.gz) = 85e10e7acf0a9d9a3b891b9b108f76e252849418c6230daea94ac429af8a4ea4
3
SIZE (google-or-tools-v9.5_GH0.tar.gz) = 14795911
3
SIZE (google-or-tools-v9.8_GH0.tar.gz) = 19725471
(-)a/math/or-tools/files/patch-abseil (-20 lines)
Removed Link Here
1
--- ortools/lp_data/lp_parser.cc.orig	2022-11-25 09:21:54 UTC
2
+++ ortools/lp_data/lp_parser.cc
3
@@ -185,7 +185,7 @@ bool LPParser::ParseIntegerVariablesList(StringPiece l
4
 
5
 bool LPParser::ParseConstraint(StringPiece constraint) {
6
   const StatusOr<ParsedConstraint> parsed_constraint_or_status =
7
-      ::operations_research::glop::ParseConstraint(constraint.as_string());
8
+      ::operations_research::glop::ParseConstraint(std::string(constraint));
9
   if (!parsed_constraint_or_status.ok()) return false;
10
   const ParsedConstraint& parsed_constraint =
11
       parsed_constraint_or_status.value();
12
@@ -414,7 +414,7 @@ StatusOr<ParsedConstraint> ParseConstraint(absl::strin
13
     if (ConsumeToken(&constraint, &consumed_name, &consumed_coeff) !=
14
         TokenType::END) {
15
       return absl::InvalidArgumentError(absl::StrCat(
16
-          "End of input was expected, found: ", constraint.as_string()));
17
+          "End of input was expected, found: ", std::string(constraint)));
18
     }
19
   }
20
 
(-)b/math/or-tools/pkg-plist (-26 / +75 lines)
Lines 1-11 Link Here
1
%%FLATZINC%%bin/fzn-ortools
1
%%FLATZINC%%bin/fzn-ortools
2
bin/sat_runner
3
bin/solve
4
include/ortools/algorithms/binary_indexed_tree.h
5
include/ortools/algorithms/binary_search.h
2
include/ortools/algorithms/dense_doubly_linked_list.h
6
include/ortools/algorithms/dense_doubly_linked_list.h
7
include/ortools/algorithms/duplicate_remover.h
3
include/ortools/algorithms/dynamic_partition.h
8
include/ortools/algorithms/dynamic_partition.h
4
include/ortools/algorithms/dynamic_permutation.h
9
include/ortools/algorithms/dynamic_permutation.h
5
include/ortools/algorithms/find_graph_symmetries.h
10
include/ortools/algorithms/find_graph_symmetries.h
6
include/ortools/algorithms/hungarian.h
11
include/ortools/algorithms/hungarian.h
7
include/ortools/algorithms/knapsack_solver.h
12
include/ortools/algorithms/knapsack_solver.h
8
include/ortools/algorithms/knapsack_solver_for_cuts.h
13
include/ortools/algorithms/knapsack_solver_for_cuts.h
14
include/ortools/algorithms/python/knapsack_solver_doc.h
15
include/ortools/algorithms/set_cover.h
16
include/ortools/algorithms/set_cover_ledger.h
17
include/ortools/algorithms/set_cover_model.h
18
include/ortools/algorithms/set_cover_reader.h
19
include/ortools/algorithms/set_cover_utils.h
9
include/ortools/algorithms/sparse_permutation.h
20
include/ortools/algorithms/sparse_permutation.h
10
include/ortools/base/accurate_sum.h
21
include/ortools/base/accurate_sum.h
11
include/ortools/base/adjustable_priority_queue-inl.h
22
include/ortools/base/adjustable_priority_queue-inl.h
Lines 14-52 include/ortools/base/base_export.h Link Here
14
include/ortools/base/basictypes.h
25
include/ortools/base/basictypes.h
15
include/ortools/base/bitmap.h
26
include/ortools/base/bitmap.h
16
include/ortools/base/case.h
27
include/ortools/base/case.h
17
include/ortools/base/check.h
18
include/ortools/base/cleanup.h
28
include/ortools/base/cleanup.h
19
include/ortools/base/commandlineflags.h
29
include/ortools/base/commandlineflags.h
20
include/ortools/base/container_logging.h
30
include/ortools/base/container_logging.h
21
include/ortools/base/die_if_null.h
22
include/ortools/base/dump_vars.h
31
include/ortools/base/dump_vars.h
23
include/ortools/base/dynamic_library.h
32
include/ortools/base/dynamic_library.h
24
include/ortools/base/encodingutils.h
33
include/ortools/base/encodingutils.h
25
include/ortools/base/file.h
34
include/ortools/base/file.h
26
include/ortools/base/filesystem.h
35
include/ortools/base/filesystem.h
27
include/ortools/base/flags.h
28
include/ortools/base/gzipfile.h
36
include/ortools/base/gzipfile.h
29
include/ortools/base/gzipstring.h
37
include/ortools/base/gzipstring.h
30
include/ortools/base/hash.h
38
include/ortools/base/hash.h
31
include/ortools/base/helpers.h
39
include/ortools/base/helpers.h
32
include/ortools/base/init_google.h
40
include/ortools/base/init_google.h
33
include/ortools/base/int_type.h
41
include/ortools/base/int_type.h
34
include/ortools/base/integral_types.h
35
include/ortools/base/iterator_adaptors.h
42
include/ortools/base/iterator_adaptors.h
36
include/ortools/base/jniutil.h
37
include/ortools/base/linked_hash_map.h
43
include/ortools/base/linked_hash_map.h
38
include/ortools/base/log.h
39
include/ortools/base/log_severity.h
40
include/ortools/base/logging.h
44
include/ortools/base/logging.h
41
include/ortools/base/logging_export.h
42
include/ortools/base/logging_extensions.h
43
include/ortools/base/logging_flags.h
44
include/ortools/base/logging_utilities.h
45
include/ortools/base/macros.h
45
include/ortools/base/macros.h
46
include/ortools/base/map_util.h
46
include/ortools/base/map_util.h
47
include/ortools/base/mathutil.h
47
include/ortools/base/mathutil.h
48
include/ortools/base/memfile.h
48
include/ortools/base/memfile.h
49
include/ortools/base/mock-log.h
50
include/ortools/base/murmur.h
49
include/ortools/base/murmur.h
51
include/ortools/base/mutable_memfile.h
50
include/ortools/base/mutable_memfile.h
52
include/ortools/base/numbers.h
51
include/ortools/base/numbers.h
Lines 56-62 include/ortools/base/protobuf_util.h Link Here
56
include/ortools/base/protoutil.h
55
include/ortools/base/protoutil.h
57
include/ortools/base/ptr_util.h
56
include/ortools/base/ptr_util.h
58
include/ortools/base/python-swig.h
57
include/ortools/base/python-swig.h
59
include/ortools/base/raw_logging.h
60
include/ortools/base/recordio.h
58
include/ortools/base/recordio.h
61
include/ortools/base/small_map.h
59
include/ortools/base/small_map.h
62
include/ortools/base/source_location.h
60
include/ortools/base/source_location.h
Lines 71-77 include/ortools/base/sysinfo.h Link Here
71
include/ortools/base/threadpool.h
69
include/ortools/base/threadpool.h
72
include/ortools/base/timer.h
70
include/ortools/base/timer.h
73
include/ortools/base/typeid.h
71
include/ortools/base/typeid.h
72
include/ortools/base/types.h
74
include/ortools/base/version.h
73
include/ortools/base/version.h
74
include/ortools/base/vlog.h
75
include/ortools/base/vlog_is_on.h
75
include/ortools/base/vlog_is_on.h
76
include/ortools/base/zipfile.h
76
include/ortools/base/zipfile.h
77
include/ortools/bop/bop_base.h
77
include/ortools/bop/bop_base.h
Lines 92-107 include/ortools/constraint_solver/constraint_solveri.h Link Here
92
include/ortools/constraint_solver/demon_profiler.pb.h
92
include/ortools/constraint_solver/demon_profiler.pb.h
93
include/ortools/constraint_solver/java/javawrapcp_util.h
93
include/ortools/constraint_solver/java/javawrapcp_util.h
94
include/ortools/constraint_solver/routing.h
94
include/ortools/constraint_solver/routing.h
95
include/ortools/constraint_solver/routing_constraints.h
96
include/ortools/constraint_solver/routing_decision_builders.h
95
include/ortools/constraint_solver/routing_enums.pb.h
97
include/ortools/constraint_solver/routing_enums.pb.h
96
include/ortools/constraint_solver/routing_filters.h
98
include/ortools/constraint_solver/routing_filters.h
97
include/ortools/constraint_solver/routing_flags.h
98
include/ortools/constraint_solver/routing_index_manager.h
99
include/ortools/constraint_solver/routing_index_manager.h
100
include/ortools/constraint_solver/routing_insertion_lns.h
99
include/ortools/constraint_solver/routing_lp_scheduling.h
101
include/ortools/constraint_solver/routing_lp_scheduling.h
100
include/ortools/constraint_solver/routing_neighborhoods.h
102
include/ortools/constraint_solver/routing_neighborhoods.h
101
include/ortools/constraint_solver/routing_parameters.h
103
include/ortools/constraint_solver/routing_parameters.h
102
include/ortools/constraint_solver/routing_parameters.pb.h
104
include/ortools/constraint_solver/routing_parameters.pb.h
103
include/ortools/constraint_solver/routing_search.h
105
include/ortools/constraint_solver/routing_search.h
104
include/ortools/constraint_solver/routing_types.h
106
include/ortools/constraint_solver/routing_types.h
107
include/ortools/constraint_solver/routing_utils.h
105
include/ortools/constraint_solver/search_limit.pb.h
108
include/ortools/constraint_solver/search_limit.pb.h
106
include/ortools/constraint_solver/search_stats.pb.h
109
include/ortools/constraint_solver/search_stats.pb.h
107
include/ortools/constraint_solver/solver_parameters.pb.h
110
include/ortools/constraint_solver/solver_parameters.pb.h
Lines 119-124 include/ortools/glop/lp_solver.h Link Here
119
include/ortools/glop/lu_factorization.h
122
include/ortools/glop/lu_factorization.h
120
include/ortools/glop/markowitz.h
123
include/ortools/glop/markowitz.h
121
include/ortools/glop/parameters.pb.h
124
include/ortools/glop/parameters.pb.h
125
include/ortools/glop/parameters_validation.h
122
include/ortools/glop/preprocessor.h
126
include/ortools/glop/preprocessor.h
123
include/ortools/glop/pricing.h
127
include/ortools/glop/pricing.h
124
include/ortools/glop/primal_edge_norms.h
128
include/ortools/glop/primal_edge_norms.h
Lines 148-160 include/ortools/graph/linear_assignment.h Link Here
148
include/ortools/graph/max_flow.h
152
include/ortools/graph/max_flow.h
149
include/ortools/graph/min_cost_flow.h
153
include/ortools/graph/min_cost_flow.h
150
include/ortools/graph/minimum_spanning_tree.h
154
include/ortools/graph/minimum_spanning_tree.h
155
include/ortools/graph/multi_dijkstra.h
151
include/ortools/graph/one_tree_lower_bound.h
156
include/ortools/graph/one_tree_lower_bound.h
152
include/ortools/graph/perfect_matching.h
157
include/ortools/graph/perfect_matching.h
153
include/ortools/graph/shortestpaths.h
158
include/ortools/graph/shortest_paths.h
154
include/ortools/graph/strongly_connected_components.h
159
include/ortools/graph/strongly_connected_components.h
155
include/ortools/graph/topologicalsorter.h
160
include/ortools/graph/topologicalsorter.h
156
include/ortools/graph/util.h
161
include/ortools/graph/util.h
157
include/ortools/gscip/gscip.h
162
include/ortools/gscip/gscip.h
163
include/ortools/gscip/gscip.pb.h
164
include/ortools/gscip/gscip_callback_result.h
165
include/ortools/gscip/gscip_constraint_handler.h
158
include/ortools/gscip/gscip_event_handler.h
166
include/ortools/gscip/gscip_event_handler.h
159
include/ortools/gscip/gscip_ext.h
167
include/ortools/gscip/gscip_ext.h
160
include/ortools/gscip/gscip_message_handler.h
168
include/ortools/gscip/gscip_message_handler.h
Lines 162-167 include/ortools/gscip/gscip_parameters.h Link Here
162
include/ortools/gscip/legacy_scip_params.h
170
include/ortools/gscip/legacy_scip_params.h
163
include/ortools/gurobi/environment.h
171
include/ortools/gurobi/environment.h
164
include/ortools/init/init.h
172
include/ortools/init/init.h
173
include/ortools/init/python/init_doc.h
165
include/ortools/linear_solver/glop_utils.h
174
include/ortools/linear_solver/glop_utils.h
166
include/ortools/linear_solver/linear_expr.h
175
include/ortools/linear_solver/linear_expr.h
167
include/ortools/linear_solver/linear_solver.h
176
include/ortools/linear_solver/linear_solver.h
Lines 190-208 include/ortools/lp_data/matrix_scaler.h Link Here
190
include/ortools/lp_data/matrix_utils.h
199
include/ortools/lp_data/matrix_utils.h
191
include/ortools/lp_data/model_reader.h
200
include/ortools/lp_data/model_reader.h
192
include/ortools/lp_data/mps_reader.h
201
include/ortools/lp_data/mps_reader.h
202
include/ortools/lp_data/mps_reader_template.h
193
include/ortools/lp_data/permutation.h
203
include/ortools/lp_data/permutation.h
194
include/ortools/lp_data/proto_utils.h
204
include/ortools/lp_data/proto_utils.h
195
include/ortools/lp_data/scattered_vector.h
205
include/ortools/lp_data/scattered_vector.h
206
include/ortools/lp_data/sol_reader.h
196
include/ortools/lp_data/sparse.h
207
include/ortools/lp_data/sparse.h
197
include/ortools/lp_data/sparse_column.h
208
include/ortools/lp_data/sparse_column.h
198
include/ortools/lp_data/sparse_row.h
209
include/ortools/lp_data/sparse_row.h
199
include/ortools/lp_data/sparse_vector.h
210
include/ortools/lp_data/sparse_vector.h
211
include/ortools/math_opt/callback.pb.h
200
include/ortools/math_opt/constraints/indicator/indicator_constraint.h
212
include/ortools/math_opt/constraints/indicator/indicator_constraint.h
201
include/ortools/math_opt/constraints/indicator/storage.h
213
include/ortools/math_opt/constraints/indicator/storage.h
202
include/ortools/math_opt/constraints/indicator/validator.h
214
include/ortools/math_opt/constraints/indicator/validator.h
203
include/ortools/math_opt/constraints/quadratic/quadratic_constraint.h
215
include/ortools/math_opt/constraints/quadratic/quadratic_constraint.h
204
include/ortools/math_opt/constraints/quadratic/storage.h
216
include/ortools/math_opt/constraints/quadratic/storage.h
205
include/ortools/math_opt/constraints/quadratic/validator.h
217
include/ortools/math_opt/constraints/quadratic/validator.h
218
include/ortools/math_opt/constraints/second_order_cone/second_order_cone_constraint.h
219
include/ortools/math_opt/constraints/second_order_cone/storage.h
220
include/ortools/math_opt/constraints/second_order_cone/validator.h
206
include/ortools/math_opt/constraints/sos/sos1_constraint.h
221
include/ortools/math_opt/constraints/sos/sos1_constraint.h
207
include/ortools/math_opt/constraints/sos/sos2_constraint.h
222
include/ortools/math_opt/constraints/sos/sos2_constraint.h
208
include/ortools/math_opt/constraints/sos/storage.h
223
include/ortools/math_opt/constraints/sos/storage.h
Lines 210-215 include/ortools/math_opt/constraints/sos/util.h Link Here
210
include/ortools/math_opt/constraints/sos/validator.h
225
include/ortools/math_opt/constraints/sos/validator.h
211
include/ortools/math_opt/constraints/util/model_util.h
226
include/ortools/math_opt/constraints/util/model_util.h
212
include/ortools/math_opt/core/arrow_operator_proxy.h
227
include/ortools/math_opt/core/arrow_operator_proxy.h
228
include/ortools/math_opt/core/c_api/solver.h
229
include/ortools/math_opt/core/concurrent_calls_guard.h
230
include/ortools/math_opt/core/empty_bounds.h
213
include/ortools/math_opt/core/invalid_indicators.h
231
include/ortools/math_opt/core/invalid_indicators.h
214
include/ortools/math_opt/core/inverted_bounds.h
232
include/ortools/math_opt/core/inverted_bounds.h
215
include/ortools/math_opt/core/math_opt_proto_utils.h
233
include/ortools/math_opt/core/math_opt_proto_utils.h
Lines 219-242 include/ortools/math_opt/core/solve_interrupter.h Link Here
219
include/ortools/math_opt/core/solver.h
237
include/ortools/math_opt/core/solver.h
220
include/ortools/math_opt/core/solver_debug.h
238
include/ortools/math_opt/core/solver_debug.h
221
include/ortools/math_opt/core/solver_interface.h
239
include/ortools/math_opt/core/solver_interface.h
222
include/ortools/math_opt/core/sparse_collection_matchers.h
223
include/ortools/math_opt/core/sparse_submatrix.h
240
include/ortools/math_opt/core/sparse_submatrix.h
224
include/ortools/math_opt/core/sparse_vector.h
241
include/ortools/math_opt/core/sparse_vector.h
225
include/ortools/math_opt/core/sparse_vector_view.h
242
include/ortools/math_opt/core/sparse_vector_view.h
226
include/ortools/math_opt/cpp/basis_status.h
243
include/ortools/math_opt/cpp/basis_status.h
227
include/ortools/math_opt/cpp/callback.h
244
include/ortools/math_opt/cpp/callback.h
245
include/ortools/math_opt/cpp/compute_infeasible_subsystem_arguments.h
246
include/ortools/math_opt/cpp/compute_infeasible_subsystem_result.h
228
include/ortools/math_opt/cpp/enums.h
247
include/ortools/math_opt/cpp/enums.h
229
include/ortools/math_opt/cpp/formatters.h
248
include/ortools/math_opt/cpp/formatters.h
230
include/ortools/math_opt/cpp/id_map.h
231
include/ortools/math_opt/cpp/id_set.h
232
include/ortools/math_opt/cpp/key_types.h
249
include/ortools/math_opt/cpp/key_types.h
233
include/ortools/math_opt/cpp/linear_constraint.h
250
include/ortools/math_opt/cpp/linear_constraint.h
234
include/ortools/math_opt/cpp/map_filter.h
251
include/ortools/math_opt/cpp/map_filter.h
235
include/ortools/math_opt/cpp/matchers.h
236
include/ortools/math_opt/cpp/math_opt.h
252
include/ortools/math_opt/cpp/math_opt.h
237
include/ortools/math_opt/cpp/message_callback.h
253
include/ortools/math_opt/cpp/message_callback.h
238
include/ortools/math_opt/cpp/model.h
254
include/ortools/math_opt/cpp/model.h
239
include/ortools/math_opt/cpp/model_solve_parameters.h
255
include/ortools/math_opt/cpp/model_solve_parameters.h
256
include/ortools/math_opt/cpp/objective.h
240
include/ortools/math_opt/cpp/parameters.h
257
include/ortools/math_opt/cpp/parameters.h
241
include/ortools/math_opt/cpp/solution.h
258
include/ortools/math_opt/cpp/solution.h
242
include/ortools/math_opt/cpp/solve.h
259
include/ortools/math_opt/cpp/solve.h
Lines 246-274 include/ortools/math_opt/cpp/solver_init_arguments.h Link Here
246
include/ortools/math_opt/cpp/sparse_containers.h
263
include/ortools/math_opt/cpp/sparse_containers.h
247
include/ortools/math_opt/cpp/statistics.h
264
include/ortools/math_opt/cpp/statistics.h
248
include/ortools/math_opt/cpp/streamable_solver_init_arguments.h
265
include/ortools/math_opt/cpp/streamable_solver_init_arguments.h
266
include/ortools/math_opt/cpp/update_result.h
249
include/ortools/math_opt/cpp/update_tracker.h
267
include/ortools/math_opt/cpp/update_tracker.h
250
include/ortools/math_opt/cpp/variable_and_expressions.h
268
include/ortools/math_opt/cpp/variable_and_expressions.h
269
include/ortools/math_opt/infeasible_subsystem.pb.h
270
include/ortools/math_opt/io/lp_converter.h
251
include/ortools/math_opt/io/mps_converter.h
271
include/ortools/math_opt/io/mps_converter.h
252
include/ortools/math_opt/io/names_removal.h
272
include/ortools/math_opt/io/names_removal.h
253
include/ortools/math_opt/io/proto_converter.h
273
include/ortools/math_opt/io/proto_converter.h
274
include/ortools/math_opt/labs/general_constraint_to_mip.h
275
include/ortools/math_opt/labs/linear_expr_util.h
276
include/ortools/math_opt/labs/solution_feasibility_checker.h
277
include/ortools/math_opt/labs/solution_improvement.h
278
include/ortools/math_opt/model.pb.h
279
include/ortools/math_opt/model_parameters.pb.h
280
include/ortools/math_opt/model_update.pb.h
281
include/ortools/math_opt/parameters.pb.h
282
include/ortools/math_opt/result.pb.h
283
include/ortools/math_opt/samples/branch_and_bound.h
284
include/ortools/math_opt/solution.pb.h
254
include/ortools/math_opt/solvers/cp_sat_solver.h
285
include/ortools/math_opt/solvers/cp_sat_solver.h
255
include/ortools/math_opt/solvers/glop_solver.h
286
include/ortools/math_opt/solvers/glop_solver.h
287
include/ortools/math_opt/solvers/glpk.pb.h
288
include/ortools/math_opt/solvers/glpk/gap.h
256
include/ortools/math_opt/solvers/glpk/glpk_sparse_vector.h
289
include/ortools/math_opt/solvers/glpk/glpk_sparse_vector.h
257
include/ortools/math_opt/solvers/glpk/rays.h
290
include/ortools/math_opt/solvers/glpk/rays.h
258
include/ortools/math_opt/solvers/glpk_solver.h
291
include/ortools/math_opt/solvers/glpk_solver.h
259
include/ortools/math_opt/solvers/gscip_solver.h
292
include/ortools/math_opt/solvers/gscip_solver.h
260
include/ortools/math_opt/solvers/gscip_solver_callback.h
293
include/ortools/math_opt/solvers/gscip_solver_callback.h
261
include/ortools/math_opt/solvers/gscip_solver_message_callback_handler.h
294
include/ortools/math_opt/solvers/gurobi.pb.h
262
include/ortools/math_opt/solvers/gurobi/g_gurobi.h
295
include/ortools/math_opt/solvers/gurobi/g_gurobi.h
263
include/ortools/math_opt/solvers/gurobi_callback.h
296
include/ortools/math_opt/solvers/gurobi_callback.h
264
include/ortools/math_opt/solvers/gurobi_init_arguments.h
297
include/ortools/math_opt/solvers/gurobi_init_arguments.h
265
include/ortools/math_opt/solvers/gurobi_solver.h
298
include/ortools/math_opt/solvers/gurobi_solver.h
299
include/ortools/math_opt/solvers/highs.pb.h
266
include/ortools/math_opt/solvers/message_callback_data.h
300
include/ortools/math_opt/solvers/message_callback_data.h
267
include/ortools/math_opt/solvers/pdlp_bridge.h
301
include/ortools/math_opt/sparse_containers.pb.h
268
include/ortools/math_opt/solvers/pdlp_solver.h
269
include/ortools/math_opt/storage/atomic_constraint_storage.h
302
include/ortools/math_opt/storage/atomic_constraint_storage.h
270
include/ortools/math_opt/storage/iterators.h
303
include/ortools/math_opt/storage/iterators.h
271
include/ortools/math_opt/storage/linear_constraint_storage.h
304
include/ortools/math_opt/storage/linear_constraint_storage.h
305
include/ortools/math_opt/storage/linear_expression_data.h
272
include/ortools/math_opt/storage/model_storage.h
306
include/ortools/math_opt/storage/model_storage.h
273
include/ortools/math_opt/storage/model_storage_types.h
307
include/ortools/math_opt/storage/model_storage_types.h
274
include/ortools/math_opt/storage/objective_storage.h
308
include/ortools/math_opt/storage/objective_storage.h
Lines 278-286 include/ortools/math_opt/storage/sparse_coefficient_map.h Link Here
278
include/ortools/math_opt/storage/sparse_matrix.h
312
include/ortools/math_opt/storage/sparse_matrix.h
279
include/ortools/math_opt/storage/update_trackers.h
313
include/ortools/math_opt/storage/update_trackers.h
280
include/ortools/math_opt/storage/variable_storage.h
314
include/ortools/math_opt/storage/variable_storage.h
315
include/ortools/math_opt/tools/file_format_flags.h
316
include/ortools/math_opt/validators/bounds_and_status_validator.h
281
include/ortools/math_opt/validators/callback_validator.h
317
include/ortools/math_opt/validators/callback_validator.h
282
include/ortools/math_opt/validators/enum_sets.h
283
include/ortools/math_opt/validators/ids_validator.h
318
include/ortools/math_opt/validators/ids_validator.h
319
include/ortools/math_opt/validators/infeasible_subsystem_validator.h
284
include/ortools/math_opt/validators/linear_expression_validator.h
320
include/ortools/math_opt/validators/linear_expression_validator.h
285
include/ortools/math_opt/validators/model_parameters_validator.h
321
include/ortools/math_opt/validators/model_parameters_validator.h
286
include/ortools/math_opt/validators/model_validator.h
322
include/ortools/math_opt/validators/model_validator.h
Lines 291-296 include/ortools/math_opt/validators/solve_parameters_validator.h Link Here
291
include/ortools/math_opt/validators/solve_stats_validator.h
327
include/ortools/math_opt/validators/solve_stats_validator.h
292
include/ortools/math_opt/validators/sparse_matrix_validator.h
328
include/ortools/math_opt/validators/sparse_matrix_validator.h
293
include/ortools/math_opt/validators/sparse_vector_validator.h
329
include/ortools/math_opt/validators/sparse_vector_validator.h
330
include/ortools/math_opt/validators/termination_validator.h
294
include/ortools/packing/arc_flow_builder.h
331
include/ortools/packing/arc_flow_builder.h
295
include/ortools/packing/arc_flow_solver.h
332
include/ortools/packing/arc_flow_solver.h
296
include/ortools/packing/binpacking_2d_parser.h
333
include/ortools/packing/binpacking_2d_parser.h
Lines 328-333 include/ortools/sat/boolean_problem.h Link Here
328
include/ortools/sat/boolean_problem.pb.h
365
include/ortools/sat/boolean_problem.pb.h
329
include/ortools/sat/circuit.h
366
include/ortools/sat/circuit.h
330
include/ortools/sat/clause.h
367
include/ortools/sat/clause.h
368
include/ortools/sat/constraint_violation.h
331
include/ortools/sat/cp_constraints.h
369
include/ortools/sat/cp_constraints.h
332
include/ortools/sat/cp_model.h
370
include/ortools/sat/cp_model.h
333
include/ortools/sat/cp_model.pb.h
371
include/ortools/sat/cp_model.pb.h
Lines 348-353 include/ortools/sat/cumulative.h Link Here
348
include/ortools/sat/cumulative_energy.h
386
include/ortools/sat/cumulative_energy.h
349
include/ortools/sat/cuts.h
387
include/ortools/sat/cuts.h
350
include/ortools/sat/diffn.h
388
include/ortools/sat/diffn.h
389
include/ortools/sat/diffn_cuts.h
351
include/ortools/sat/diffn_util.h
390
include/ortools/sat/diffn_util.h
352
include/ortools/sat/diophantine.h
391
include/ortools/sat/diophantine.h
353
include/ortools/sat/disjunctive.h
392
include/ortools/sat/disjunctive.h
Lines 355-360 include/ortools/sat/drat_checker.h Link Here
355
include/ortools/sat/drat_proof_handler.h
394
include/ortools/sat/drat_proof_handler.h
356
include/ortools/sat/drat_writer.h
395
include/ortools/sat/drat_writer.h
357
include/ortools/sat/encoding.h
396
include/ortools/sat/encoding.h
397
include/ortools/sat/feasibility_jump.h
358
include/ortools/sat/feasibility_pump.h
398
include/ortools/sat/feasibility_pump.h
359
include/ortools/sat/implied_bounds.h
399
include/ortools/sat/implied_bounds.h
360
include/ortools/sat/inclusion.h
400
include/ortools/sat/inclusion.h
Lines 365-376 include/ortools/sat/intervals.h Link Here
365
include/ortools/sat/lb_tree_search.h
405
include/ortools/sat/lb_tree_search.h
366
include/ortools/sat/linear_constraint.h
406
include/ortools/sat/linear_constraint.h
367
include/ortools/sat/linear_constraint_manager.h
407
include/ortools/sat/linear_constraint_manager.h
408
include/ortools/sat/linear_model.h
368
include/ortools/sat/linear_programming_constraint.h
409
include/ortools/sat/linear_programming_constraint.h
369
include/ortools/sat/linear_propagation.h
410
include/ortools/sat/linear_propagation.h
370
include/ortools/sat/linear_relaxation.h
411
include/ortools/sat/linear_relaxation.h
371
include/ortools/sat/lp_utils.h
412
include/ortools/sat/lp_utils.h
372
include/ortools/sat/max_hs.h
413
include/ortools/sat/max_hs.h
373
include/ortools/sat/model.h
414
include/ortools/sat/model.h
415
include/ortools/sat/opb_reader.h
374
include/ortools/sat/optimization.h
416
include/ortools/sat/optimization.h
375
include/ortools/sat/parameters_validation.h
417
include/ortools/sat/parameters_validation.h
376
include/ortools/sat/pb_constraint.h
418
include/ortools/sat/pb_constraint.h
Lines 383-395 include/ortools/sat/restart.h Link Here
383
include/ortools/sat/rins.h
425
include/ortools/sat/rins.h
384
include/ortools/sat/routing_cuts.h
426
include/ortools/sat/routing_cuts.h
385
include/ortools/sat/sat_base.h
427
include/ortools/sat/sat_base.h
428
include/ortools/sat/sat_cnf_reader.h
386
include/ortools/sat/sat_decision.h
429
include/ortools/sat/sat_decision.h
387
include/ortools/sat/sat_inprocessing.h
430
include/ortools/sat/sat_inprocessing.h
388
include/ortools/sat/sat_parameters.pb.h
431
include/ortools/sat/sat_parameters.pb.h
389
include/ortools/sat/sat_solver.h
432
include/ortools/sat/sat_solver.h
390
include/ortools/sat/scheduling_constraints.h
391
include/ortools/sat/scheduling_cuts.h
433
include/ortools/sat/scheduling_cuts.h
392
include/ortools/sat/simplification.h
434
include/ortools/sat/simplification.h
435
include/ortools/sat/stat_tables.h
393
include/ortools/sat/subsolver.h
436
include/ortools/sat/subsolver.h
394
include/ortools/sat/swig_helper.h
437
include/ortools/sat/swig_helper.h
395
include/ortools/sat/symmetry.h
438
include/ortools/sat/symmetry.h
Lines 401-406 include/ortools/sat/timetable.h Link Here
401
include/ortools/sat/timetable_edgefinding.h
444
include/ortools/sat/timetable_edgefinding.h
402
include/ortools/sat/util.h
445
include/ortools/sat/util.h
403
include/ortools/sat/var_domination.h
446
include/ortools/sat/var_domination.h
447
include/ortools/sat/work_assignment.h
404
include/ortools/sat/zero_half_cuts.h
448
include/ortools/sat/zero_half_cuts.h
405
include/ortools/scheduling/course_scheduling.pb.h
449
include/ortools/scheduling/course_scheduling.pb.h
406
include/ortools/scheduling/jobshop_scheduling.pb.h
450
include/ortools/scheduling/jobshop_scheduling.pb.h
Lines 409-414 include/ortools/scheduling/rcpsp.pb.h Link Here
409
include/ortools/scheduling/rcpsp_parser.h
453
include/ortools/scheduling/rcpsp_parser.h
410
include/ortools/util/adaptative_parameter_value.h
454
include/ortools/util/adaptative_parameter_value.h
411
include/ortools/util/affine_relation.h
455
include/ortools/util/affine_relation.h
456
include/ortools/util/aligned_memory.h
457
include/ortools/util/aligned_memory_internal.h
412
include/ortools/util/bitset.h
458
include/ortools/util/bitset.h
413
include/ortools/util/cached_log.h
459
include/ortools/util/cached_log.h
414
include/ortools/util/file_util.h
460
include/ortools/util/file_util.h
Lines 428-433 include/ortools/util/parse_proto.h Link Here
428
include/ortools/util/permutation.h
474
include/ortools/util/permutation.h
429
include/ortools/util/piecewise_linear_function.h
475
include/ortools/util/piecewise_linear_function.h
430
include/ortools/util/proto_tools.h
476
include/ortools/util/proto_tools.h
477
include/ortools/util/python/sorted_interval_list_doc.h
431
include/ortools/util/qap_reader.h
478
include/ortools/util/qap_reader.h
432
include/ortools/util/random_engine.h
479
include/ortools/util/random_engine.h
433
include/ortools/util/range_minimum_query.h
480
include/ortools/util/range_minimum_query.h
Lines 450-455 include/ortools/util/time_limit.h Link Here
450
include/ortools/util/tuple_set.h
497
include/ortools/util/tuple_set.h
451
include/ortools/util/vector_map.h
498
include/ortools/util/vector_map.h
452
include/ortools/util/vector_or_function.h
499
include/ortools/util/vector_or_function.h
500
include/ortools/util/vector_sum.h
501
include/ortools/util/vector_sum_internal.h
453
include/ortools/util/zvector.h
502
include/ortools/util/zvector.h
454
include/ortools_export.h
503
include/ortools_export.h
455
lib/cmake/ortools/modules/FindCbc.cmake
504
lib/cmake/ortools/modules/FindCbc.cmake
Lines 462-471 lib/cmake/ortools/ortoolsTargets-%%CMAKE_BUILD_TYPE%%.cmake Link Here
462
lib/cmake/ortools/ortoolsTargets.cmake
511
lib/cmake/ortools/ortoolsTargets.cmake
463
lib/libortools.so
512
lib/libortools.so
464
lib/libortools.so.9
513
lib/libortools.so.9
465
lib/libortools.so.9.5.9999
514
lib/libortools.so.9.8.9999
466
%%FLATZINC%%lib/libortools_flatzinc.so
515
%%FLATZINC%%lib/libortools_flatzinc.so
467
%%FLATZINC%%lib/libortools_flatzinc.so.9
516
%%FLATZINC%%lib/libortools_flatzinc.so.9
468
%%FLATZINC%%lib/libortools_flatzinc.so.9.5.9999
517
%%FLATZINC%%lib/libortools_flatzinc.so.9.8.9999
469
%%FLATZINC%%share/minizinc/ortools/fzn_all_different_int.mzn
518
%%FLATZINC%%share/minizinc/ortools/fzn_all_different_int.mzn
470
%%FLATZINC%%share/minizinc/ortools/fzn_circuit.mzn
519
%%FLATZINC%%share/minizinc/ortools/fzn_circuit.mzn
471
%%FLATZINC%%share/minizinc/ortools/fzn_cumulative.mzn
520
%%FLATZINC%%share/minizinc/ortools/fzn_cumulative.mzn

Return to bug 275887