mirror of
https://github.com/danog/PrimeModule.git
synced 2024-11-26 20:34:37 +01:00
Default to native
This commit is contained in:
parent
065d6cad2b
commit
946c8273e2
@ -251,6 +251,10 @@ 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;
|
||||
@ -259,10 +263,6 @@ 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;
|
||||
|
Loading…
Reference in New Issue
Block a user