converged() 공개 메소드

public converged ( array $gradient, array $coefficients ) : boolean
$gradient array
$coefficients array
리턴 boolean
예제 #1
0
 public function testConverged()
 {
     $criteria = new MaxTime(1);
     static::assertFalse($criteria->converged([], []));
     sleep(2);
     static::assertTrue($criteria->converged([], []));
 }