Sophie

Sophie

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

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>antiCycle -- returns a graph of an anticycle</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="___Branch__Limit.html">next</a> | <a href="_all__Odd__Holes.html">previous</a> | <a href="___Branch__Limit.html">forward</a> | <a href="_all__Odd__Holes.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>antiCycle -- returns a graph of an anticycle</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>C = antiCycle R</tt><br/><tt>C = antiCycle(R,N)</tt><br/><tt>C = antiCycle L</tt></div>
</dd></dl>
</div>
</li>
<li><div class="single">Inputs:<ul><li><span><tt>R</tt>, <span>a <a href="../../Macaulay2Doc/html/___Ring.html">ring</a></span></span></li>
<li><span><tt>N</tt>, <span>an <a href="../../Macaulay2Doc/html/___Z__Z.html">integer</a></span>, length of anticycle</span></li>
<li><span><tt>L</tt>, <span>a <a href="../../Macaulay2Doc/html/___List.html">list</a></span>, of vertices to make into the complement of a cycle in the order provided</span></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span><tt>C</tt>, <span>a <a href="___Graph.html">graph</a></span>, an anticycle on the vertices in <tt>L</tt> or on the variables of <tt>R</tt>.</span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div><div>This function returns the graph that is the complement of the cycle obtained from <tt>L</tt> by applying the function <a href="_cycle.html" title="returns a graph cycle">cycle</a>.</div>
<table class="examples"><tr><td><pre>i1 : R = QQ[a,b,c,d,e];</pre>
</td></tr>
<tr><td><pre>i2 : antiCycle R

o2 = Graph{edges => {{a, c}, {a, d}, {b, d}, {b, e}, {c, e}}}
           ring => R
           vertices => {a, b, c, d, e}

o2 : Graph</pre>
</td></tr>
<tr><td><pre>i3 : antiCycle(R,4)

o3 = Graph{edges => {{a, c}, {b, d}}  }
           ring => R
           vertices => {a, b, c, d, e}

o3 : Graph</pre>
</td></tr>
<tr><td><pre>i4 : antiCycle {e,c,d,b}

o4 = Graph{edges => {{e, d}, {c, b}}  }
           ring => R
           vertices => {a, b, c, d, e}

o4 : Graph</pre>
</td></tr>
<tr><td><pre>i5 : complementGraph antiCycle R == cycle R

o5 = true</pre>
</td></tr>
</table>
</div>
</div>
<div class="single"><h2>See also</h2>
<ul><li><span><a href="_cycle.html" title="returns a graph cycle">cycle</a> -- returns a graph cycle</span></li>
<li><span><a href="___Constructor_sp__Overview.html" title="a summary of the many ways of making graphs and hypergraphs">Constructor Overview</a> -- a summary of the many ways of making graphs and hypergraphs</span></li>
</ul>
</div>
<div class="waystouse"><h2>Ways to use <tt>antiCycle</tt> :</h2>
<ul><li>antiCycle(List)</li>
<li>antiCycle(Ring)</li>
<li>antiCycle(Ring,ZZ)</li>
</ul>
</div>
</div>
</body>
</html>