NODEPEND INDEX

NODEPEND _ _ _ _ _ _ _ _ _ _ _ _ declaration

The nodepend declaration removes the dependency declared with depend.

syntax:

nodepend<dep-kernel>{,<kernel>}+

<dep-kernel> must be a kernel that has had a dependency declared upon the one or more other kernels that are its other arguments.

examples:


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

A warning message is printed if the dependency had not been declar ed by depend.