Skip to content

Commit

Permalink
Whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
markrogoyski committed Sep 10, 2016
1 parent 98661d5 commit ab2900c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/NumericalAnalysis/RootFinding/NewtonsMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ public static function solve(callable $function, array $args, $target, $tol, $po
Validation::tolerance($tol);

// Initialize
$args1 = $args;
$guess = $args[$position];
$args1 = $args;
$guess = $args[$position];

do {
$args1[$position] = $guess + $tol; // load the initial guess into the arguments
Expand Down

0 comments on commit ab2900c

Please sign in to comment.