/usr/share/mozart/examples/sampler/constraints.oz is in mozart-doc 1.4.0-8ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 | %%%
%%% Authors:
%%% Tobias Müller <tmueller@ps.uni-sb.de>
%%% Christian Schulte <schulte@ps.uni-sb.de>
%%% Gert Smolka <smolka@ps.uni-sb.de>
%%%
%%% Copyright:
%%% Tobias Müller, 1998
%%% Christian Schulte, 1998
%%% Gert Smolka, 1998
%%%
%%% Last change:
%%% $Date: 2000-05-30 20:42:12 +0200 (Tue, 30 May 2000) $ by $Author: schulte $
%%% $Revision: 12890 $
%%%
%%% This file is part of Mozart, an implementation
%%% of Oz 3
%%% http://www.mozart-oz.org
%%%
%%% See the file "LICENSE" or
%%% http://www.mozart-oz.org/LICENSE.html
%%% for information on usage and redistribution
%%% of this file, and for a DISCLAIMER OF ALL
%%% WARRANTIES.
%%%
%%%
%%% Constraints & propagators
%%%
declare L X Y Z in L = [X Y Z]
{Inspect L}
{FD.dom 1#10 L}
2 * Y =: Z
X <: Y
Z <: 7
X \=: 1
%%%
%%% Propagation & enumeration
%%%
declare
proc {Problem Sol}
X Y Z
in
Sol = s(x:X y:Y z:Z) = {FD.dom 1#7}
X + Y =: 3*Z
X - Y =: Z
{FD.distribute naive Sol}
end
{Inspect {SearchOne Problem}}
{Inspect {SearchAll Problem}}
{Explorer.object script(Problem)}
%%%
%%% Send More Money
%%%
declare
proc {Money Sol}
S E N D M O R Y
in
Sol = s(s:S e:E n:N d:D m:M o:O r:R y:Y)
Sol ::: 0#9
{FD.distinct Sol}
S \=: 0
M \=: 0
1000*S + 100*E + 10*N + D
+ 1000*M + 100*O + 10*R + E
=: 10000*M + 1000*O + 100*N + 10*E + Y
{FD.distribute ff Sol}
end
{Explorer.object script(Money)}
%%%
%%% Magic Square
%%%
declare
proc {MagicSquare ?Sol}
s(square:Square sum:Sum) = Sol
[N11 N12 N13 N21 N22 N23 N31 N32 N33] = Square
in
Sum = {FD.decl}
Square ::: 1#9
{FD.distinct Square}
N11 + N12 + N13 =: Sum
N21 + N22 + N23 =: Sum
N31 + N32 + N33 =: Sum
N11 + N21 + N31 =: Sum
N12 + N22 + N32 =: Sum
N13 + N23 + N33 =: Sum
N11 + N22 + N33 =: Sum
N31 + N22 + N13 =: Sum
{FD.distribute ff Square}
end
{ExploreOne MagicSquare}
%%%
%%% A smarter solution...
%%%
declare
proc {SmartSquare ?Sol}
thread
9 * (9 + 1) div 2 =: 3 * Sol.sum
end
{MagicSquare Sol}
end
{ExploreOne SmartSquare}
%%%
%%% Aligning for a photo
%%%
declare
Persons = [alice bert chris deb evan]
Prefs = [alice#chris bert#evan chris#deb
chris#evan deb#alice deb#evan
evan#alice evan#bert]
proc {PhotoConstraints Sol}
Pos = {FD.record pos Persons
1#{Length Persons}}
Sat = {Map Prefs
fun {$ A#B}
(Pos.A+1 =: Pos.B) +
(Pos.A-1 =: Pos.B) =: 1
end}
Total = {FD.int 0#{Length Prefs}}
in
{FD.distinct Pos}
{FD.sum Sat '=:' Total}
Sol = s(pos:Pos total:Total sat:Sat)
end
declare
proc {PhotoNaive Sol}
{PhotoConstraints Sol}
{FD.distribute naive Sol.pos}
end
declare
proc {MaxSat O N}
O.total <: N.total
end
{Explorer.object script(PhotoNaive MaxSat)}
%%%
%%% Graphical output
%%%
\insert constraints/draw-photo.oz
{Explorer.object add(information DrawPhoto)}
%%%
%%% Use a better enumeration
%%%
declare
proc {PhotoBetter Sol}
{PhotoConstraints Sol}
{FD.distribute generic(order:nbSusps) Sol.pos}
end
{ExploreBest PhotoBetter MaxSat}
%%%
%%% Removing symmetries
%%%
declare
proc {Photo Sol}
thread
Sol.pos.alice >: Sol.pos.bert
end
{PhotoBetter Sol}
end
{ExploreBest Photo MaxSat}
%%%
%%% Bridge
%%%
%% bridge specification
\insert constraints/bridge.oz
%% Scheduling compiler
\insert constraints/scheduling-compiler.oz
{Explorer.object script({Compile Bridge}
proc {$ O N}
O.pe >: N.pe
end)}
%%%
%%% Production scheduling
%%%
\insert constraints/abz6.oz
{ExploreBest {Compile ABZ6} proc {$ O N}
O.pe >: N.pe
end}
%%%
%%% Show the bridge schedule
%%%
\insert constraints/animate-bridge.oz
%%%
%%% Create Hamming Code
%%%
\insert constraints/hamming.oz
% code 16 symbols in 7-bit words with minimal hamming distance of 2
{ExploreOne {Hamming 7 2 16}}
%%%
%%% Allocating cabin crews
%%%
\insert constraints/crew.oz
declare
Flights = [flight(no: 1 crew:4 stewards:1 stewardesses:1
frenchspeaking:1 spanishspeaking:1 germanspeaking:1)
flight(no: 2 crew:5 stewards:1 stewardesses:1
frenchspeaking:1 spanishspeaking:1 germanspeaking:1)
flight(no: 3 crew:5 stewards:1 stewardesses:1
frenchspeaking:1 spanishspeaking:1 germanspeaking:1)
flight(no: 4 crew:6 stewards:2 stewardesses:2
frenchspeaking:1 spanishspeaking:1 germanspeaking:1)
flight(no: 5 crew:7 stewards:3 stewardesses:3
frenchspeaking:1 spanishspeaking:1 germanspeaking:1)
flight(no: 6 crew:4 stewards:1 stewardesses:1
frenchspeaking:1 spanishspeaking:1 germanspeaking:1)
flight(no: 7 crew:5 stewards:1 stewardesses:1
frenchspeaking:1 spanishspeaking:1 germanspeaking:1)
flight(no: 8 crew:6 stewards:1 stewardesses:1
frenchspeaking:1 spanishspeaking:1 germanspeaking:1)
flight(no: 9 crew:6 stewards:2 stewardesses:2
frenchspeaking:1 spanishspeaking:1 germanspeaking:1)
flight(no:10 crew:7 stewards:3 stewardesses:3
frenchspeaking:1 spanishspeaking:1 germanspeaking:1)
]
declare
Crew = crew(stewards:
[tom david jeremy ron joe bill fred bob mario ed]
stewardesses:
[carol janet tracy marilyn carolyn cathy inez
jean heather juliet]
frenchspeaking:
[inez bill jean juliet]
germanspeaking:
[tom jeremy mario cathy juliet]
spanishspeaking:
[bill fred joe mario marilyn inez heather])
{ExploreOne {CrewProb Flights Crew}}
|