Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 7ebd25ac536d248d499a3ce2acda963a > files > 4457

Macaulay2-1.3.1-8.fc15.i686.rpm

<?xml version="1.0" encoding="utf-8" ?>  <!-- for emacs: -*- coding: utf-8 -*- -->
<!-- Apache may like this line in the file .htaccess: AddCharset utf-8 .html -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"	 "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg-flat.dtd" >
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head><title>globalAssignment -- install standard global assignment method</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="_global__Assignment__Hooks.html">next</a> | <a href="___Global__Assign__Hook.html">previous</a> | <a href="_global__Assignment__Hooks.html">forward</a> | <a href="___Global__Assign__Hook.html">backward</a> | up | <a href="index.html">top</a> | <a href="master.html">index</a> | <a href="toc.html">toc</a> | <a href="http://www.math.uiuc.edu/Macaulay2/">Macaulay2 web site</a></div>

    </td>
  </tr>
</table>
<hr/>
<div><h1>globalAssignment -- install standard global assignment method</h1>
<div class="single"><h2>Synopsis</h2>
<ul><li><div class="list"><dl class="element"><dt class="heading">Usage: </dt><dd class="value"><div><tt>globalAssignment X</tt></div>
</dd></dl>
</div>
</li>
<li><div class="single">Inputs:<ul><li><span><tt>X</tt>, <span>a <a href="___Type.html">type</a></span></span></li>
</ul>
</div>
</li>
<li><div class="single">Consequences:<ul><li>the functions <a href="_global__Assign__Function.html" title="the standard method for the global assignment hook">globalAssignFunction</a> and <a href="_global__Release__Function.html" title="the standard method for the global variable release hook">globalReleaseFunction</a> are installed in the type <tt>X</tt> under <a href="___Global__Assign__Hook.html" title="hook for assignment to global variables">GlobalAssignHook</a> and <a href="___Global__Release__Hook.html" title="">GlobalReleaseHook</a>, respectively.  The effect is that when an object of type <tt>X</tt> is assigned to a global variable, the function <a href="_use.html" title="install or activate object">use</a> is called on it, and thereafter that object will print out as the name of the variable.</li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div>One type for which this has been done is <a href="___Ring.html" title="the class of all rings">Ring</a>, as illustrated in the following example.<table class="examples"><tr><td><pre>i1 : S := QQ[x]

o1 = QQ[x]

o1 : PolynomialRing</pre>
</td></tr>
<tr><td><pre>i2 : S

o2 = QQ[x]

o2 : PolynomialRing</pre>
</td></tr>
<tr><td><pre>i3 : S^3

            3
o3 = (QQ[x])

o3 : QQ[x]-module, free</pre>
</td></tr>
<tr><td><pre>i4 : R = S

o4 = R

o4 : PolynomialRing</pre>
</td></tr>
<tr><td><pre>i5 : S

o5 = R

o5 : PolynomialRing</pre>
</td></tr>
<tr><td><pre>i6 : S^3

      3
o6 = R

o6 : R-module, free</pre>
</td></tr>
</table>
</div>
</div>
</div>
</body>
</html>