From 513cdc1892c25da43026381e7da79cc79172827a Mon Sep 17 00:00:00 2001 From: Laurent Perron Date: Tue, 10 Oct 2023 11:11:44 +0200 Subject: [PATCH] fix --- ortools/sat/docs/scheduling.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ortools/sat/docs/scheduling.md b/ortools/sat/docs/scheduling.md index a7ee164bbf3..c73dc93d932 100644 --- a/ortools/sat/docs/scheduling.md +++ b/ortools/sat/docs/scheduling.md @@ -14,8 +14,8 @@ exclusivity between tasks, and temporal relations between tasks. ## Interval variables Intervals are constraints containing three constant of affine expressions -(start, size, and end). Creating an interval constraint will enforce that start -+ size == end. +(start, size, and end). Creating an interval constraint will enforce that +`start + size == end`. The more general API uses three expressions to define the interval. If the size is fixed, a simpler API uses the start expression and the fixed size.