PHP Classes

File: setting.php

Recommend this page to a friend!
  Classes of donni ansyari   PHP Simplex Solver   setting.php   Download  
File: setting.php
Role: Configuration script
Content type: text/plain
Description: setting
Class: PHP Simplex Solver
Solve equations in linear programming with Simplex
Author: By
Last change: replace
Date: 7 years ago
Size: 395 bytes
 

Contents

Class file image Download
<?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




?>