1
0
mirror of https://github.com/danog/PrimeModule.git synced 2024-11-26 20:34:37 +01:00

Revert "Default to native"

This reverts commit 946c8273e2.
This commit is contained in:
Daniil Gentili 2021-09-05 20:55:40 +02:00
parent 946c8273e2
commit 34f41ddc2d
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7

View File

@ -251,10 +251,6 @@ class PrimeModule
if ($res !== false) {
return $res;
}
$res = self::native_single((int) $what);
if ($res !== false) {
return $res;
}
$res = self::python_single_alt($what);
if ($res !== false) {
return $res;
@ -263,6 +259,10 @@ class PrimeModule
if ($res !== false) {
return $res;
}
$res = self::native_single((int) $what);
if ($res !== false) {
return $res;
}
$res = self::wolfram_single($what);
if ($res !== false) {
return $res;