Hack は strict モードの方が速いので、最初のベンチマークゲームを dito に変換しようとしましたが、unstrict バージョンでは発生しないスタック オーバーフローでスタックします (オブジェクトを使用した再帰呼び出しとは異なりますか?)。理由はありますか?スタックサイズを増やすにはどうすればよいですか? ご想像のとおり、「php スタック オーバーフロー」のグーグル検索は役に立ちません。^^
問題は、最初の再帰呼び出しで発生します。
私のコード:
<?hh // strict
class Tree {
public function bottomUpTree(?num $item, ?num $depth) : array<?num>
{
if ($depth === null) return array(null,null,$item);
if ($item !== null) {
$item2 = $item + $item;
$depth--;
return array( // <--- Stack overflow here
$this->bottomUpTree($item2-1,$depth),
$this->bottomUpTree($item2,$depth),
$item);
}
else {
throw new Exception("Fatal");
}
}
public function itemCheck(array<?int, ?int> $treeNode) : int {
if ($treeNode !== null && $treeNode[2] !== null) {
$someNumber = $treeNode[2];
$a = $someNumber + 10;
return $someNumber
+ ($treeNode[0][0] === null ? $this->itemCheck($treeNode[0]) : $treeNode[0][2])
- ($treeNode[1][0] === null ? $this->itemCheck($treeNode[1]) : $treeNode[1][2]);
}
else {
throw new Exception("Fatal");
}
}
public function run($argc, $argv) {
$minDepth = 4;
$n = ($argc == 2) ? $argv[1] : 1;
$maxDepth = max($minDepth + 2, $n);
$stretchDepth = $maxDepth + 1;
$stretchTree = $this->bottomUpTree(0, $stretchDepth);
printf("stretch tree of depth %d\t check: %d\n",
$stretchDepth, $this->itemCheck($stretchTree));
unset($stretchTree);
$longLivedTree = $this->bottomUpTree(0, $maxDepth);
$iterations = 1 << ($maxDepth);
do {
$check = 0;
for($i = 1; $i <= $iterations; ++$i)
{
$t = $this->bottomUpTree($i, $minDepth);
$check += $this->itemCheck($t);
unset($t);
$t = $this->bottomUpTree(-$i, $minDepth);
$check += $this->itemCheck($t);
unset($t);
}
printf("%d\t trees of depth %d\t check: %d\n", $iterations<<1, $minDepth, $check);
$minDepth += 2;
$iterations >>= 2;
}
while($minDepth <= $maxDepth);
printf("long lived tree of depth %d\t check: %d\n",
$maxDepth, $this->itemCheck($longLivedTree));
}
}
$tree = new Tree();
$tree->run($argc, $argv);