|
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
1 |
efrain |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
declare(strict_types=1);
|
|
|
4 |
|
|
|
5 |
namespace Phpml\Math;
|
|
|
6 |
|
|
|
7 |
interface Kernel
|
|
|
8 |
{
|
|
|
9 |
/**
|
|
|
10 |
* @param float|array $a
|
|
|
11 |
* @param float|array $b
|
|
|
12 |
*
|
|
|
13 |
* @return float|array
|
|
|
14 |
*/
|
|
|
15 |
public function compute($a, $b);
|
|
|
16 |
}
|