File r37/lisp/csl/html/r37_0339.html artifact ff38b28c1e part of check-in a57e59ec0d



<A NAME=VAROPT>

<TITLE>VAROPT</TITLE></A>
<b><a href=r37_idx.html>INDEX</a></b><p><p>



<B>VAROPT</B> _ _ _  _ _ _  _ _ _  _ _ _ <B>switch</B><P>
<P>
 
 <P>
<P>
When <em>varopt</em> is on, the sequence of variables is optimized by 

<A HREF=r37_0179.html>solve</A> with respect to execution speed. Otherwise, the 
sequence 
given in the call to 
<A HREF=r37_0179.html>solve</A> is preserved. Default is <em>on</em>. 
<P>
<P>
In combination with the switch 
<A HREF=r37_0268.html>arbvars</A>, <em>varopt</em> can be used 
to control variable elimination. 
<P>
<P>
 <P> <H3> 
examples: </H3>
<P><PRE><TT>
off arbvars; 

solve({x+2z,x-3y},{x,y,z});				

           x      x
  		   {{y=-,z= - -}} 
           3      2


solve({x*y=1,z=x},{x,y,z});				

               1
  		   {{z=x,y=-}} 
               x


off varopt; 

solve({x+2z,x-3y},{x,y,z});				

                       2*z
  		   {{x= - 2*z,y= - ---}} 
                        3


solve({x*y=1,z=x},{x,y,z});				

           1
  		   {{y=-,x=z}} 
           z

</TT></PRE><P>

REDUCE Historical
REDUCE Sourceforge Project | Historical SVN Repository | GitHub Mirror | SourceHut Mirror | NotABug Mirror | Chisel Mirror | Chisel RSS ]