converged() 공개 메소드

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