/usr/share/mozart/doc/system/node27.html 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 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>5.13 Assigning Values</TITLE><LINK href="ozdoc.css" rel="stylesheet" type="text/css"></HEAD><BODY><TABLE align="center" border="0" cellpadding="6" cellspacing="6" class="nav"><TR bgcolor="#DDDDDD"><TD><A href="node26.html#section.fd.distribution"><< Prev</A></TD><TD><A href="node14.html">- Up -</A></TD></TR></TABLE><DIV id="section.fd.assignment"><H2><A name="section.fd.assignment">5.13 Assigning Values</A></H2><P>Special support is available for assigning particular values to vectors of variables. Assignment interleaves the assignment of a value proper to a variable and synchronization until stability after each assignment.</P><P>The selection of variables and the selection of values is as with distribution <A href="node26.html#section.fd.distribution">Section 5.12</A>.</P><P></P><DL><DT><A name="label278"></A> <CODE>assign</CODE></DT><DD><BLOCKQUOTE class="synopsis"><P></P><BLOCKQUOTE class="code"><CODE>{FD<SPAN class="keyword">.</SPAN>assign </CODE><CODE>+<I>ValA</I></CODE><CODE> </CODE><CODE>+<I>Xv</I></CODE><CODE>}</CODE></BLOCKQUOTE><P></P></BLOCKQUOTE></DD><DD><P>The vector <CODE><I>Xv</I></CODE> is assigned according to the specification <CODE><I>ValA</I></CODE>. <CODE><I>ValA</I></CODE> may be either the atom <CODE>min</CODE>, <CODE>mid</CODE>, or <CODE>max</CODE>. That is, the smallest, medium, or largest element is assigned to each variable. </P><P>Is equivalent to (for a list of variables <CODE>Xs</CODE>):</P><P></P><BLOCKQUOTE class="code"><CODE><SPAN class="keyword">proc</SPAN><SPAN class="variablename"> </SPAN>{<SPAN class="functionname">FD.assign</SPAN> ValA Xs}<BR> <SPAN class="keyword">for</SPAN> X <SPAN class="keyword">in</SPAN> Xs <SPAN class="keyword">do</SPAN> <BR> {Space<SPAN class="keyword">.</SPAN>waitStable}<BR> X = {FD<SPAN class="keyword">.</SPAN>reflect<SPAN class="keyword">.</SPAN>ValA X}<BR> <SPAN class="keyword">end</SPAN> <BR><SPAN class="keyword">end</SPAN></CODE></BLOCKQUOTE><P></P></DD></DL><P></P></DIV><TABLE align="center" border="0" cellpadding="6" cellspacing="6" class="nav"><TR bgcolor="#DDDDDD"><TD><A href="node26.html#section.fd.distribution"><< Prev</A></TD><TD><A href="node14.html">- Up -</A></TD></TR></TABLE><HR><ADDRESS><A href="http://www.ps.uni-sb.de/~duchier/">Denys Duchier</A>, <A href="http://www.ps.uni-sb.de/~kornstae/">Leif Kornstaedt</A>, <A href="http://www.ps.uni-sb.de/~homik/">Martin Homik</A>, <A href="http://www.ps.uni-sb.de/~tmueller/">Tobias Müller</A>, <A href="http://www.ps.uni-sb.de/~schulte/">Christian Schulte</A> and <A href="http://www.info.ucl.ac.be/~pvr">Peter Van Roy</A><BR><SPAN class="version">Version 1.4.0 (20110908185330)</SPAN></ADDRESS></BODY></HTML>
|