converged() public method

public converged ( array $gradient, array $coefficients ) : boolean
$gradient array
$coefficients array
return boolean
コード例 #1
0
ファイル: AnyTest.php プロジェクト: mcordingley/regression
 public function testNotConverged()
 {
     $criteria = new Any([$this->makeMock(false), $this->makeMock(false)]);
     static::assertFalse($criteria->converged([], []));
 }