2021-04-16 00:21:07 +02:00
|
|
|
#!/usr/bin/env python3
|
2025-01-10 11:35:44 +01:00
|
|
|
# Copyright 2010-2025 Google LLC
|
2018-07-16 18:40:14 -07:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
|
#
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
#
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
|
# limitations under the License.
|
2023-06-30 22:49:35 +02:00
|
|
|
|
2025-09-16 16:25:04 +02:00
|
|
|
# [START program]
|
2018-07-16 18:40:14 -07:00
|
|
|
"""Code sample to demonstrates how to build an optional interval."""
|
|
|
|
|
|
|
|
|
|
from ortools.sat.python import cp_model
|
|
|
|
|
|
|
|
|
|
|
2023-11-17 11:56:36 +01:00
|
|
|
def optional_interval_sample_sat():
|
2021-09-08 21:19:57 +02:00
|
|
|
"""Showcases how to build optional interval variables."""
|
2018-11-11 09:39:59 +01:00
|
|
|
model = cp_model.CpModel()
|
|
|
|
|
horizon = 100
|
2021-09-08 21:19:57 +02:00
|
|
|
|
|
|
|
|
# An interval can be created from three affine expressions.
|
2023-11-16 19:46:56 +01:00
|
|
|
start_var = model.new_int_var(0, horizon, "start")
|
2018-11-11 09:39:59 +01:00
|
|
|
duration = 10 # Python cp/sat code accept integer variables or constants.
|
2023-11-16 19:46:56 +01:00
|
|
|
end_var = model.new_int_var(0, horizon, "end")
|
|
|
|
|
presence_var = model.new_bool_var("presence")
|
|
|
|
|
interval_var = model.new_optional_interval_var(
|
2023-06-30 22:49:35 +02:00
|
|
|
start_var, duration, end_var + 2, presence_var, "interval"
|
|
|
|
|
)
|
2021-09-08 21:19:57 +02:00
|
|
|
|
2023-06-30 22:49:35 +02:00
|
|
|
print(f"interval = {repr(interval_var)}")
|
2021-09-08 21:19:57 +02:00
|
|
|
|
|
|
|
|
# If the size is fixed, a simpler version uses the start expression and the
|
|
|
|
|
# size.
|
2023-11-16 19:46:56 +01:00
|
|
|
fixed_size_interval_var = model.new_optional_fixed_size_interval_var(
|
2023-06-30 22:49:35 +02:00
|
|
|
start_var, 10, presence_var, "fixed_size_interval_var"
|
|
|
|
|
)
|
|
|
|
|
print(f"fixed_size_interval_var = {repr(fixed_size_interval_var)}")
|
2018-11-15 11:38:24 -08:00
|
|
|
|
2021-09-08 21:19:57 +02:00
|
|
|
# A fixed interval can be created using the same API.
|
2023-11-16 19:46:56 +01:00
|
|
|
fixed_interval = model.new_optional_fixed_size_interval_var(
|
2023-06-30 22:49:35 +02:00
|
|
|
5, 10, presence_var, "fixed_interval"
|
|
|
|
|
)
|
|
|
|
|
print(f"fixed_interval = {repr(fixed_interval)}")
|
2018-07-16 18:40:14 -07:00
|
|
|
|
|
|
|
|
|
2023-11-17 11:56:36 +01:00
|
|
|
optional_interval_sample_sat()
|
2025-09-16 16:25:04 +02:00
|
|
|
# [END program]
|