| 
<?php
$maxiterasi=100;
 $type="max";  // $type="max"; or $type="min";
 $precision=0.000001;
 $tolerance=0.05; // 5%
 $convergence=0.001;
 $iscetak=true;
 
 $assumelinearmodel=true;
 $assumenonnegatif=true;
 $useautomaticscaling=true;
 
 $estimatestype="tangent";  // Tangent or Quadratic
 $derivativestype="forward"; //Forward or Central
 $searchtype="newton"; //Newton or Conjugate
 
 
 
 
 ?>
 |