converged() public method

public converged ( array $gradient, array $coefficients ) : boolean
$gradient array
$coefficients array
return boolean
Example #1
0
 public function testNotConverged()
 {
     $criteria = new Any([$this->makeMock(false), $this->makeMock(false)]);
     static::assertFalse($criteria->converged([], []));
 }