kernel = new RBF(1e-3); } /** * @test */ public function build() : void { $this->assertInstanceOf(RBF::class, $this->kernel); $this->assertInstanceOf(Kernel::class, $this->kernel); } /** * @test */ public function options() : void { $options = [ 102 => 2, 201 => 1e-3, ]; $this->assertEquals($options, $this->kernel->options()); } }