Hi Folks,
There are a large class of problems that may be characterized this way: Given a bunch of pieces, constrain them so they form a single, connected chain.
The following is a beautiful example from this class of problems.
Problem: Constrain the segments in an aircraft’s route so that they form a single, connected chain.
Explanation: An aircraft flies a route. A route consists of segments. A route has a starting fix and an ending fix. A “fix” is a position. Each segment also has a starting fix and an ending fix. One segment’s starting fix must match the route’s starting
fix. One segment’s ending fix must match the route’s ending fix. For the other segments, they must be connected: the ending fix of one segment must be the starting fix of another segment.
Example: Here is a trivial route with just one segment:
<Route>
Here is a route with three segments. Notice the segments are connected:
Declarative description of the connected-segments constraint:
Every segment in a route must satisfy these three constraints:
1.
The segment is the route’s first segment, or the segment follows another segment.
2.
The segment is the route’s last segment, or the segment precedes another segment.
3.
The segment does not follow the route and the segment does not precede the route.
Here is a more detailed description:
For every segment s in route
r:
1.
The starting fix of
s matches the starting fix of r, or there is a segment
s2 whose ending fix matches the starting fix of
s.
2.
The ending fix of
s matches the ending fix of r, or there is a segment
s2 whose starting fix matches the ending fix of
s.
3.
The starting fix of
s does not match the ending fix of
r and the ending fix of s does not match the starting fix of
r.
Schematron implementation of the connected-segments constraint:
<!-- no disconnected segments in a route -->
every $s in Segment satisfies
($s/end-Fix/*/@id = $r/end-Fix/*/@id) or
(not($s/start-Fix/*/@id = $r/end-Fix/*/@id) and not($s/end-Fix/*/@id = $r/start-Fix/*/@id))
">
That is so neat. It is a beautiful, declarative expression of the constraints on the segments in a route.
/Roger |