kernel = new Manhattan(); } /** * @test */ public function build() : void { $this->assertInstanceOf(Manhattan::class, $this->kernel); $this->assertInstanceOf(Distance::class, $this->kernel); } /** * @test * @dataProvider computeProvider * * @param (int|float)[] $a * @param (int|float)[] $b * @param float $expected */ public function compute(array $a, array $b, float $expected) : void { $distance = $this->kernel->compute($a, $b); $this->assertGreaterThanOrEqual(0., $distance); $this->assertEquals($expected, $distance); } /** * @return Generator */ public function computeProvider() : Generator { yield [ [2, 1, 4, 0], [-2, 1, 8, -2], 10.0, ]; yield [ [7.4, -2.5], [0.01, -1], 8.89, ]; yield [ [1000, -2000, 3000], [1000, -2000, 3000], 0.0, ]; } }