Artifact adb1219871b4644fbaf39fe98ce2b715ec868ae36a8aa1f9538254b7f83a2b7e:
- Executable file
r37/lisp/csl/html/r37_0204.html
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 942) [annotate] [blame] [check-ins using] [more...]
<A NAME=NODEPEND> <TITLE>NODEPEND</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>NODEPEND</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>declaration</B><P> <P> <P> <P> The <em>nodepend</em> declaration removes the dependency declared with <A HREF=r37_0192.html>depend</A>. <P> <H3> syntax: </H3> <P> <P> <em>nodepend</em><dep-kernel>{,<kernel>}+ <P> <P> <P> <P> <dep-kernel> must be a kernel that has had a dependency declared upon the one or more other kernels that are its other arguments. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> depend y,x,z; df(sin y,x); COS(Y)*DF(Y,X) df(sin y,x,z); COS(Y)*DF(Y,X,Z) - DF(Y,X)*DF(Y,Z)*SIN(Y) nodepend y,z; df(sin y,x); COS(Y)*DF(Y,X) df(sin y,x,z); 0 </TT></PRE><P>A warning message is printed if the dependency had not been declar ed by <em>depend</em>. <P> <P> <P>