package affectors; import java.io.PrintWriter; import java.util.Enumeration; import java.util.Vector; import main.Node; import main.Cell; import main.Globals; /** This is a special "meta-affector". Rather than calculating something on its own, the ProductAff is a container for other affectors. It simply multiplies together the values of each affector contained within it. For instance, to add an inhibition to some other term, you might wrap the term in a ProductAff along with the PsiAff
 Formula
dnodex/dt = SubAffector1 * SubAffector2 * ... * SubAffectorN
 Parameters
No Parameters
 Usage
&NODEX
&ProductAff
&endNODEX    &[some_affector]
				
			&endProductAff
&[some_other_affector]