XPRScopycontrols
 XPRScopycontrols | 
   
  Purpose
 
  Synopsis
 
 int XPRS_CC XPRScopycontrols(XPRSprob dest, XPRSprob src); 
 
  Arguments
 
| 
     
     dest 
       | 
   
     
     The problem to which the controls are copied.
       | 
  
| 
     
     src 
       | 
   
     
     The problem from which the controls are copied.
       | 
  
  Example
 
 The following turns off Presolve for problem
 prob1 and then copies this and other control values to the problem
 prob2 :
 
XPRScreateprob(&prob1); XPRSsetintcontrol(prob1,XPRS_PRESOLVE,0); XPRScreateprob(&prob2); XPRScopycontrols(prob2,prob1);
  Related topics
 
